MySQL 날짜함수, 시간함수
EXTRACT()
- 날짜에서 년, 월, 일, 시간등을 추출
EXTRACT(unit FROM date)
의 형태
The EXTRACT() function uses the same kinds of unit specifiers as DATE_ADD() or DATE_SUB(), but extracts parts from the date rather than performing date arithmetic.
YEAR_MONTH from date
SELECT CONCAT(YEAR(NOW()), MONTH(NOW())); -- 20237
SELECT EXTRACT(YEAR_MONTH FROM NOW()); -- 202307
ref
https://learnsql.com/cookbook/how-to-get-the-year-and-the-month-from-a-date-in-mysql/
'개발 한 스푼 > MySQL' 카테고리의 다른 글
you do not have the SUPER privilege (Error Code: 1419) (0) | 2023.09.20 |
---|---|
NOW()와 SYSDATE()의 차이 (0) | 2023.09.05 |
계층형 쿼리 (0) | 2023.08.17 |
LIKE% 위치에 따른 인덱스 사용 여부 (0) | 2023.07.11 |
[MySQL] id컬럼 데이터타입 - int? Bigint? (0) | 2022.12.24 |