一,使用>和<符号查询:
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是时间戳类型,那么日期换成时间戳即可。
(adsbygoogle = window.adsbygoogle || []).push({});
来源:https://www.02405.com/archives/1128