Función MySQL ASCII()
Ejemplo
Devuelve el valor ASCII del primer carácter en "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
Definición y uso
La función ASCII() devuelve el valor ASCII para el carácter específico.
Sintaxis
ASCII(character)
Valores paramétricos
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 |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|