我有一个数据库和一个具有以下属性的表:
Column: Date
Type: TIMESTAMP
Attributes: ON UPDATE CURRENT_TIMESTAMP
Default: CURRENT_TIMESTAMP
所以每个数据都会以这种格式显示:“2013-07-06 14:32:18”
我正在寻找一个 SQL 查询,该查询显示检索“2013-07-06”中的行。
我尝试了什么:
select * from posts where date between "2013-07-05 00:00:00" and "2013-07-07 00:00:00";