Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Oracle
- Data and Time Functions
- Sring Functions and Operators
- String Functions and Operators
- 티베로
- Tibero
- 전자정부 표준프레임워크
- Date and Time Function
- Date and Time Functions
- SVN
- 방화벽
- String Functions and Date Operators
- String Function and Operators
- HTTP
- 전자정부표준프레임워크
- MySQL
- 오라클
- 윈도우
Archives
- Today
- Total
웹이야기
[MySQL]UNHEX() 본문
MySQL 문자열 함수와 연산자
UNHEX()
-
UNHEX(str)
의 형태
For a string argument str, UNHEX(str) interprets each pair of characters in the argument as a hexadecimal number and covnerts it to the byte represented by the number. The return value is a binary string.
mysql> SELECT UNHEX('4D7953514C');
+---------------------+
| UNHEX('4D7953514C') |
+---------------------+
| MySQL |
+---------------------+
1 row in set (0.00 sec)
mysql>
'D > MySQL' 카테고리의 다른 글
[MySQL]WEIGHT_STRING() (0) | 2020.06.18 |
---|---|
[MySQL]UPPER() (0) | 2020.06.18 |
[MySQL]UCASE() (0) | 2020.06.18 |
[MySQL]TRIM() (0) | 2020.06.18 |
[MySQL]SUBSTRING_INDEX() (0) | 2020.06.11 |
Comments