웹이야기

[MySQL]UNHEX() 본문

D/MySQL

[MySQL]UNHEX()

yeon.Biju 2020. 6. 18. 10:05

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> 

 

 

 

webobj.tistory.com/178

 

[MySQL] HEX()

MySQL 문자열 함수와 연산자 HEX()  - HEX(str) HEX(N) 의 형태 For a string argument str, HEX() returns a hexadecimal string representation of str where each byte of each character in str is converted..

webobj.tistory.com

 

'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