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

oracle sql语句取得本周本月本年的数据

时间:2014-07-28 23:57:04      阅读:588      评论:0      收藏:0      [点我收藏+]

标签:color   数据   div   ar   时间   line   sql   oracle   

[sql]
--国内从周一到周日 国外是周日到周六 
select to_char(sysdate-1,‘D‘) from dual;--取国内的星期几 去掉减一取国外的星期--
 
[sql]
--取本周时间内的数据 
select * from table  where DTIME >=trunc(next_day(sysdate-8,1)+1) and DTIME<=trunc(next_day(sysdate-8,1)+7)+1 ; 
   
select * from table  where DTIME >=trunc(next_day(sysdate-8,1)) and DTIME<=trunc(next_day(sysdate-8,1)+7);--国外的 
     
select * from table  where  DTIME >=TRUNC(SYSDATE, ‘MM‘and DTIME<=last_day(SYSDATE); 
--本月的 
select * from table where to_char(DTIEM,‘yyyy‘)=to_char(sysdate,‘yyyy‘); 
--本年的 

 

oracle sql语句取得本周本月本年的数据,布布扣,bubuko.com

oracle sql语句取得本周本月本年的数据

标签:color   数据   div   ar   时间   line   sql   oracle   

原文地址:http://www.cnblogs.com/xiaobaitu/p/3873348.html

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