ORACLE time使用總結

來源:互聯網
上載者:User

ORACLE time使用總結
oracle當月、當年、本周資料
當月資料Sql代碼
select * from table t where t.create_date >=TRUNC(SYSDATE, 'MM') and t.create_date<=last_day(SYSDATE)
當年資料Sql代碼
select * from table t where t.create_date >=trunc(sysdate,'YYYY') and t.create_date<=add_months(trunc(sysdate,'YYYY'),12)-1


本周(國外周日為一個星期第一天)Sql代碼
where t.create_date >=trunc(sysdate,'day')+1 and t.create_time<=trunc(sysdate,'day')+6


本周(國內周一為一個星期第一天)Sql代碼
where t.create_date >=trunc(next_day(sysdate-8,1)+1) and t.create_date<=trunc(next_day(sysdate-8,1)+7)+1

 

具體參考EBS文檔:120devg.pdf  (493--504)頁

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.