MySQL ASCII() Functie
Voorbeeld
Retourneer de ASCII-waarde van het eerste teken in "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
Definitie en gebruik
De functie ASCII() retourneert de ASCII-waarde voor het specifieke teken.
Syntaxis
ASCII(character)
Parameterwaarden
Parameter | Description |
---|---|
character | Required. 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 |
Technische details
Werkt in: | Van MySQL 4.0 |
---|