MySQL TYPE
DATE, DATETIME, TIMESTAMP
https://dev.mysql.com/doc/refman/5.7/en/datetime.html
CURDATE()
특징
- CURDATE() : 현재 날짜 반환
- CURRENT_DATE(), CURRENT_DATE 와 동일
- CURTIME() : 현재 시간 반환
- NOW() : 현재 날짜+시간 반환
DATE - DATETIME 타입값 비교
- MySQL 서버가 DATE 타입값을 DATETIME 으로 변환
+ Comparing a date with function NOW() (for example) is not working anymore
- 로직이 바뀌었다고한다 (2008)
- NOW() -> CURDATE()
- isDate() 로 해결한다고~
http://download.nust.na/pub6/mysql/doc/refman/5.1/en/using-date.html
https://bugs.mysql.com/bug.php?id=28929
ref)
https://dev.mysql.com/doc/refman/5.7/en/datetime.html
https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-conversion.html
https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_now
'개발 한 스푼' 카테고리의 다른 글
[GIT] 이미 push한 커밋 메세지 수정하기 (0) | 2023.03.31 |
---|---|
JSP (0) | 2023.01.10 |
[MySQL] WHERE 1=1 (0) | 2023.01.05 |
[iBatis] 다중쿼리 (MySQL) (0) | 2023.01.03 |
Insert into same table trigger mysql (0) | 2023.01.03 |