개발

mysql | unix_timestamp null 오류

AM0530 2020. 10. 21. 15:48

1. 상황 :  unix_timestamp로 값을 가져오는데 null 오류 발생 

 

2. 원인 : unix_timestamp(date)

= unix_timestamp('2021-02-29') 

없는 날짜를 unix_timestamp로 변환하려고 해서 쿼리 결과값이 null로 표시되었다. 

 

3. 해결 : unix_timestamp('2021-02-28') 로 변경