Sqlite查询时间段内的数据问题解决!

前端之家收集整理的这篇文章主要介绍了Sqlite查询时间段内的数据问题解决!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近搞sqlite本地查询,需求为查询某时间段内的数据,在sql中我们都知道为:

select * from tblName where rDate Between '2008-6-10' and  '2008-6-12'

这样子是没有问题的,但是在sqlite中我们这样子写是得不到结果的,试了好多次终于发现在规律,我们写成如下:

select * from tblName where rDate Between '2008-06-10' and  '2008-06-12'

这样子就OK了,所以行到的规律是我们的时间必须是格式化的,所以我们引入了下面的代码格式化时间:

 SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
                cur_Calender.set(year,month,day);
                switch (sel_date_type) {
				case 1://开始时间
					if(Search_date_Begin!=null){
						Date_start =sdf.format(cur_Calender.getTime());
						Search_date_Begin.setText(Date_start);
					}
					break;
				case 2://结束时间
					if(Search_date_End!=null){	
						Date_End = sdf.format(cur_Calender.getTime());
						Search_date_End.setText(Date_End);
					}
					break;
				default:
					break;
				}
            } 

现在就OK了!

原文链接:https://www.f2er.com/sqlite/202096.html

猜你在找的Sqlite相关文章