date 实现了Comparable 接口 调用compareTo(Date date)方法可以比较大小。
例如:比较date1 和 date2的大小
int res = date1.compareTo(date2),相等则返回0,date1大返回1,否则返回-1。
Java是一种可以撰写跨平台应用程序的面向对象的程序设计语言。Java 技术具有卓越的通用性、高效性、平台移植性和安全性,广泛应用于PC、数据中心、游戏控制台、科学超级计算机、移动电话和互联网,同时拥有全球最大的开发者专业社群。
可以比较,具体比较方法如下:
[java] view plain copy
Service:
String hql = "SELECT COUNT(*) FROM Instructions "
hql =hql+where
[java] view plain copy
String strStartDate=ParamUtil.getString(request,"strStartDate","")//格式为:2010-05-03
String strEndDate=ParamUtil.getString(request,"strEndDate","")//格式为:2016-06-01
if(!strStartDate.equals("")){
tWhere+=" and dtCreatDate>=to_date('"+strStartDate+" 00:00:00','yyyy-mm-dd hh24:mi:ss')"
}
if(!strEndDate.equals("")){
tWhere+=" and dtCreatDate<=to_date('"+strEndDate+" 23:59:59','yyyy-mm-dd hh24:mi:ss')"
}
[java] view plain copy
int count = objSvr.getCount(tWhere)
打印的语句如下:
[sql] view plain copy
WHERE intVirDel<>1 and dtCreatDate>=to_date('2016-06-01 00:00:00','yyyy-mm-dd hh24:mi:ss') and dtCreatDate<=to_date('2016-06-24 23:59:59','yyyy-mm-dd hh24:mi:ss')
时间类型可以比较大小,但是日期格式需要转成字符串,或者字符串转成日期来比较
1、创建测试表,
create table test_date1(id int, v_date date)
2、插入测试数据
insert into test_date1 values(1,str_to_date('2019-08-01','%Y-%m-%d'))
insert into test_date1 values(2,str_to_date('2019-10-01','%Y-%m-%d'))
insert into test_date1 values(3,str_to_date('2019-08-05','%Y-%m-%d'))
insert into test_date1 values(4,str_to_date('2019-09-09','%Y-%m-%d'))
commit
3、查询表中全量数据,select t.* from test_date1 t
4、编写语句,查询date类型字段,日期大于20190901的数据;
select t.* from test_date1 t where v_date >str_to_date('2019-09-01','%Y-%m-%d')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)