MySQL ASCII()関数
例
「CustomerName」の最初の文字のASCII値を返します。
SELECT ASCII(CustomerName) AS NumCodeOfFirstChar
FROM Customers;
定義と使用法
ASCII()関数は、特定の文字のASCII値を返します。
構文
ASCII(character)
パラメータ値
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 |
技術的な詳細
で動作します: | MySQL4.0から |
---|