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
- String Functions and Date Operators
- SVN
- 전자정부표준프레임워크
- HTTP
- Tibero
- Date and Time Functions
- String Functions and Operators
- 방화벽
- Oracle
- 오라클
- 윈도우
- MySQL
- Sring Functions and Operators
- Data and Time Functions
- 전자정부 표준프레임워크
- Date and Time Function
- 티베로
- String Function and Operators
Archives
- Today
- Total
웹이야기
MySQL SEC_TO_TIME() 본문
MySQL 날짜함수, 시간함수
SEC_TO_TIME()
- 초를 시간으로 변환
SEC_TO_TIME(seconds)
의 형태
Returns the seconds argument, converted to hours, minutes, and seconds, as a TIME value. The range of the result is constrained to that of the TIME data type. A warning occurs if the argument corresponds to a value outside that range.
mysql> SELECT SEC_TO_TIME(2378);
+-------------------+
| SEC_TO_TIME(2378) |
+-------------------+
| 00:39:38 |
+-------------------+
1 row in set (0.00 sec)
mysql> SELECT SEC_TO_TIME(2378)+0;
+---------------------+
| SEC_TO_TIME(2378)+0 |
+---------------------+
| 3938 |
+---------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
MySQL SUBDATE() (0) | 2020.04.03 |
---|---|
MySQL STR_TO_DATE() (0) | 2020.04.03 |
MySQL SECOND() (0) | 2020.04.03 |
MySQL QUARTER() (0) | 2020.04.02 |
MySQL PERIOD_DIFF() (0) | 2020.04.02 |
Comments