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 |
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|