ORACLE 當月、本週、當年SQL查詢

iteye_1098發表於2010-05-13

本文轉自:http://jophy.iteye.com/blog/337321

 

當月資料

 

select * from table t    
where t.create_time >=TRUNC(SYSDATE, 'MM')    
and t.create_time<=last_day(SYSDATE)  
create_time為你要查詢的時間

 

當年資料

select * from table t   
where t.create_time >=trunc(sysdate,'YYYY')    
and t.create_time<=add_months(trunc(sysdate,'YYYY'),12)-1

 

本週(國外週日為一個星期第一天)

where t.create_time >=trunc(sysdate,'day')+1 and t.create_time<=trunc(sysdate,'day')+6  

本週(國內週一為一個星期第一天)

where t.create_time >=trunc(next_day(sysdate-8,1)+1) and t.create_time<=trunc(next_day(sysdate-8,1)+7)+1

  

相關文章