Fungsi MySQL ASCII()
Contoh
Kembalikan nilai ASCII dari karakter pertama di "CustomerName":
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
Definisi dan Penggunaan
Fungsi ASCII() mengembalikan nilai ASCII untuk karakter tertentu.
Sintaksis
ASCII(character)
Nilai Parameter
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 |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|