bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Asc() Function

Example

 SELECT Asc(CustomerName) AS NumCodeOfFirstChar
FROM Customers;

Definition and Usage

The Asc() function returns the ASCII value for the specific character.

Syntax

Asc(
character
)

Parameter Values

ParameterDescription
characterRequired. The character to return the ASCII value for. If more than one character is entered, it will only return the value for the first character

Technical Details

Works in:From Access 2000

Previous

MS Access Functions

Next

MS Access C hr() Function