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
- SVN
- String Function and Operators
- 전자정부표준프레임워크
- Data and Time Functions
- 전자정부 표준프레임워크
- 윈도우
- Date and Time Function
- HTTP
- 방화벽
- 티베로
- Tibero
- MySQL
- 오라클
- String Functions and Date Operators
- Date and Time Functions
- Sring Functions and Operators
- Oracle
- String Functions and Operators
Archives
- Today
- Total
웹이야기
MySQL FROM_BASE64() 본문
MySQL 문자열 함수와 연산자
FROM_BASE64()
-
FROM_BASE64(str)
의 형태
Takes a string encoded with the base-64 encoded rules used by TO_BASE64() and returns the decoded result as a binary string. The result is NULL if the argument is NULL or not a valid base-64 string.
mysql> SELECT TO_BASE64('abc'), FROM_BASE64(TO_BASE64('abc')) ;
+------------------+-------------------------------+
| TO_BASE64('abc') | FROM_BASE64(TO_BASE64('abc')) |
+------------------+-------------------------------+
| YWJj | abc |
+------------------+-------------------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] INSERT() (0) | 2020.04.13 |
---|---|
[MySQL] HEX() (0) | 2020.04.13 |
[MySQL] FORMAT() (0) | 2020.04.13 |
[MySQL] FIND_IN_SET() (0) | 2020.04.10 |
[MySQL] FIELD() (0) | 2020.04.08 |
Comments