Fonction MySQL ASCII()
Exemple
Renvoie la valeur ASCII du premier caractère dans "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
Définition et utilisation
La fonction ASCII() renvoie la valeur ASCII pour le caractère spécifique.
Syntaxe
ASCII(character)
Valeurs des paramètres
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 |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|