一,使用>和<符号查询:
select * from table where create_date<'2017-05-31' and create_date>'2017-01-01';
二,使用between查询:
select * from table where create_date between '2017-01-01' and '2017-05-31'
注意:如果create_date是时间戳类型,那么日期换成时间戳即可。
未经允许不得转载:吾爱主机之家 » MySQL查询两个日期/时间之间记录的两种方法