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 |
Tags
- String Functions and Operators
- 전자정부표준프레임워크
- Tibero
- Date and Time Functions
- String Function and Operators
- Oracle
- SVN
- MySQL
- HTTP
- Date and Time Function
- 티베로
- 전자정부 표준프레임워크
- 윈도우
- Sring Functions and Operators
- 오라클
- Data and Time Functions
- 방화벽
- String Functions and Date Operators
Archives
- Today
- Total
웹이야기
MySQL QUARTER() 본문
MySQL 날짜함수, 시간함수
QUARTER()
- 날짜를 이용해서 분기를 구해주는 함수
QUARTER(date)
의 형태
Returns the quarter of the year for date, in the range 1 to 4.
mysql> SELECT QUARTER(NOW());
+----------------+
| QUARTER(NOW()) |
+----------------+
| 2 |
+----------------+
1 row in set (0.00 sec)
mysql> SELECT QUARTER('2010-11-30');
+-----------------------+
| QUARTER('2010-11-30') |
+-----------------------+
| 4 |
+-----------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
MySQL SEC_TO_TIME() (0) | 2020.04.03 |
---|---|
MySQL SECOND() (0) | 2020.04.03 |
MySQL PERIOD_DIFF() (0) | 2020.04.02 |
MySQL PERIOD_ADD() (0) | 2020.04.02 |
MySQL NOW() (0) | 2020.04.02 |
Comments