Função MySQL ASCII()
Exemplo
Retorne o valor ASCII do primeiro caractere em "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
Definição e uso
A função ASCII() retorna o valor ASCII para o caractere específico.
Sintaxe
ASCII(character)
Valores de parâmetro
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 |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|