일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 전자정부 표준프레임워크
- 윈도우
- Tibero
- Date and Time Function
- 오라클
- 방화벽
- String Function and Operators
- String Functions and Operators
- MySQL
- SVN
- Oracle
- HTTP
- Date and Time Functions
- 전자정부표준프레임워크
- 티베로
- String Functions and Date Operators
- Data and Time Functions
- Sring Functions and Operators
- Today
- Total
웹이야기
[MySQL] ASCII() 본문
MySQL 문자열 함수와 연산자,
ASCII()
- 문자열 중에서 가장 왼쪽의 문자열에 대해 숫자값으로 바꿔준다.
ASCII(str)
의 형태
Return the numeric value of the leftmost character of the string str. Returns 0 if str is the empty string. Returns NULL if str is NULL. ASCII() works for 8-bit characters.
mysql> SELECT ASCII(2);
+----------+
| ASCII(2) |
+----------+
| 50 |
+----------+
1 row in set (0.00 sec)
mysql> SELECT ASCII('DX');
+-------------+
| ASCII('DX') |
+-------------+
| 68 |
+-------------+
1 row in set (0.00 sec)
mysql> SELECT ASCII('D');
+------------+
| ASCII('D') |
+------------+
| 68 |
+------------+
1 row in set (0.00 sec)
mysql> SELECT ASCII('dx');
+-------------+
| ASCII('dx') |
+-------------+
| 100 |
+-------------+
1 row in set (0.00 sec)
mysql> SELECT ASCII('한글');
+-----------------+
| ASCII('한글') |
+-----------------+
| 237 |
+-----------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] BIT_LENGTH() (0) | 2020.04.08 |
---|---|
[MySQL] BIN() (0) | 2020.04.08 |
MySQL String Function and Operators (0) | 2020.04.07 |
MySQL YEARWEEK() (0) | 2020.04.05 |
MySQL YEAR() (0) | 2020.04.05 |