mysql常见日期查询问题

1.mysql使用between and 查询日期边界的问题

需求:查询出2020-08-20号的数据

SELECT * from user_cards t1 where t1.user_id=75 
and t1.create_time BETWEEN '2020-08-20' and '2020-08-20'

结果查出来的数据为空,这是因为查询的时间范围是2020-08-20 0时0分0秒到2020-08-20 0时0分0秒

我们想要的查询条件是2020-08-20 0时0分0秒到2020-08-20 23时59分59秒(实际就是2020-08-21 0时0分0秒)

解决:

SELECT * from user_cards t1 where t1.user_id=75 
and t1.create_time BETWEEN '2020-08-20' and DATE_ADD('2020-08-20',INTERVAL 1 day)

你可能感兴趣的:(mysql)