我的数据库中的日期列为dd-mm-yyyy格式.
我想在两个日期之间搜索数据.
我试过了
SELECT * FROM t_data where orderdate between '01-05-2012 00:00:00' and '31-05-2012 23:59:59'
和
SELECT * FROM t_data where orderdate >= '05-05-2012' and orderdate <='31-05-2012'
如何解决这个问题?
使用 :
原文链接:https://www.f2er.com/sqlite/197723.htmlselect * from tbl_name where Attribute_name between 'yyyy-mm-dd' and 'yyyy-mm-dd';
这里Attribute_name是date_time列名
例子:
select * from tbl_node where mydate between '2014-02-02' and '2014-02-06'; 1|1|123|456|12eb-ab|1|1|254|123|19|2014-02-03 16:00:44 2|1|123|456|12eb-ab|1|1|254|123|19|2014-02-03 16:01:03 3|1|123|456|12eb-ab|1|1|254|123|19|2014-02-03 16:00:57