码迷,mamicode.com
首页 > 数据库 > 详细

Oracle中日期作为条件的查询

时间:2018-12-27 19:03:15      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:sysdate   第三天   to_date   bsp   date   商品   oracl   数据   sel   

1.范围日期的查询:

select * from goods
where g_time between
to_date(‘2018/12/26 10:01:59‘,‘yyyy-MM-dd hh:mi:ss‘)
and to_date(‘2018/12/26 10:05:17‘,‘ yyyy-MM-dd hh:mi:ss‘);

2.等于某个日期的查询:

select * from goods
where g_time=to_date(‘2018/12/26 10:05:17‘,‘yyyy-MM-dd hh:mi:ss‘);

3.当前日期的前几天和后几天的数据:

select * from goods

where g_time >= trunc(sysdate)-6  and < trunc(sysdate)-3;

为什么要用trunc(sysdate)呢
因为当前时间一般不会正好是0点,比如当前是11点,-6就是6天前的11 点开始

4.查询出每个月倒数第三天上架的商品信息:

select g.* from goods g where g.g_time=last_day(g.g_time)-2;

 

Oracle中日期作为条件的查询

标签:sysdate   第三天   to_date   bsp   date   商品   oracl   数据   sel   

原文地址:https://www.cnblogs.com/leafarmyarmy/p/10185519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!