Oracle 时间段查询

本文介绍了在SQL中如何根据系统日期或指定日期查询数据的具体方法,包括使用不同的日期范围查询方式及其注意事项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

--根据系统日期查数据(sysdate)
select * from t_br_salesdtl a where a.fstoreid=191 and a.ftime>=to_date(to_char(sysdate-1,'yyyy-mm-dd'),'yyyy-mm-dd ')
--根据给定的日期查数据(eg:2012-07-01至2012-07-03)
第一种方法:
select * from t_br_salesdtl a where a.fstoreid=191 and a.ftime>=to_date('2012-07-01','yyyy-mm-dd')
and a.ftime<=to_date('2012-07-01','yyyy-mm-dd') order by ftime desc
注:用大于和小于取区间值不包含最后指定值
第二种方法:
select * from t_br_salesdtl a where a.fstoreid=191 and a.ftime  between to_date('2012-07-01','yyyy-mm-dd')
and to_date('2012-07-01','yyyy-mm-dd') order by ftime desc


以上两种的时间范围其实不包括'2012-07-01'这天的12点之前与之后是不包括的,所以这种查询条件无法查出。

改成如下即可:

第三种方法:
select * from t_br_salesdtl a where a.fstoreid=191 and to_char(a.ftime,'yyyy-mm-dd')>='2012-07-01'
and to_char(a.ftime,'yyyy-mm-dd')<='2012-07-01'  order by ftime desc

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值