이번달
where year([column_name]) = year(now())
and month([column_name]) = month(now())
오늘
where date_format([column_name], '%Y-%m-%d') = date_format(curdate(), '%Y-%m-%d')
날짜 사이에 해당하는지
where ( date([column_name]) between '2020-12-01' and '2020-12-05')
대충,,, 요정도 응용하면 다 구할 수 있을 것 같다.
+ datediff
두 날짜 사이의 차이 일 수를 구해줌
datediff([column_name], now())
'STUDY > DATABASE' 카테고리의 다른 글
MySQL | export DDL (0) | 2021.04.09 |
---|---|
MySQL | Unable to load authentication plugin 'caching_sha2_password' (0) | 2020.12.16 |
MySQL | Unknown collation: 'utf8mb4_0900_ai_ci' (0) | 2020.10.26 |
MySQL | Geolocation 거리 구하기 (0) | 2020.10.26 |
MySQL | DATABASE, USER 생성 / Data Export / Data Import (0) | 2020.10.06 |