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
- Date and Time Function
- 윈도우
- Oracle
- HTTP
- Sring Functions and Operators
- String Function and Operators
- Date and Time Functions
- 전자정부 표준프레임워크
- SVN
- 방화벽
- String Functions and Date Operators
- Tibero
- 티베로
- Data and Time Functions
- 전자정부표준프레임워크
- String Functions and Operators
- MySQL
- 오라클
Archives
- Today
- Total
웹이야기
MySQL UTC_DATE() 본문
MySQL 날짜함수, 시간함수
UTC_DATE()
-
UTC_DATE, UTC_DATE()
의 형태
Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in string or numeric context.
SELECTmysql> SELECT UTC_DATE(), UTC_DATE()+0 ;
+------------+--------------+
| UTC_DATE() | UTC_DATE()+0 |
+------------+--------------+
| 2020-04-05 | 20200405 |
+------------+--------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
MySQL UTC_TIMESTAMP() (0) | 2020.04.05 |
---|---|
MySQL UTC_TIME() (0) | 2020.04.05 |
MySQL UNIX_TIMESTAMP() (0) | 2020.04.05 |
MySQL TO_SECONDS() (0) | 2020.04.05 |
MySQL TO_DAYS() (0) | 2020.04.05 |
Comments