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
- Data and Time Functions
- HTTP
- MySQL
- Oracle
- 티베로
- 오라클
- String Function and Operators
- 전자정부 표준프레임워크
- SVN
- String Functions and Date Operators
- 전자정부표준프레임워크
- String Functions and Operators
- Date and Time Function
- Date and Time Functions
- 윈도우
- Sring Functions and Operators
- Tibero
- 방화벽
Archives
- Today
- Total
웹이야기
[MySQL] OCT() 본문
MySQL 문자열 함수와 연산자
OCT()
-
OCT(N)
의 형태
Returns a string representation of the octal value of N. where N is a longlong(BIGINT) number. This is equivalent to CONV(N, 10, 8). Returns NULL if N is NULL.
mysql> SELECT OCT(12);
+---------+
| OCT(12) |
+---------+
| 14 |
+---------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] ORD() (0) | 2020.04.14 |
---|---|
[MySQL] OCTET_LENGTH() (0) | 2020.04.14 |
[MySQL] MID() (0) | 2020.04.14 |
[MySQL] MAKE_SET() (0) | 2020.04.14 |
[MySQL] LTRIM() (0) | 2020.04.14 |
Comments