程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle trunc 函數處理日期格式,oracletrunc

oracle trunc 函數處理日期格式,oracletrunc

編輯:Oracle教程

oracle trunc 函數處理日期格式,oracletrunc


select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;  --顯示當前時間
2011-12-29 16:24:34

select trunc(sysdate,'year') from dual; --截取到年(本年的第一天)
2011-1-1

select trunc(sysdate,'q') from dual; --截取到季度(本季度的第一天)
2011-10-1

select trunc(sysdate,'month') from dual; --截取到月(本月的第一天)
2011-12-1

select trunc(sysdate,'') from dual;

select to_char(trunc(sysdate),'yyyymmdd hh24:mi:ss') from dual; --默認截取到日(當日的零點零分零秒)
20111229 00:00:00

select trunc(sysdate-1,'w') from dual;  -- 離當前時間最近的周四,若當天為周四則返回當天,否則返回上周四
2011-12-22

select trunc(sysdate,'ww') from dual;  --截取到上周末(上周周六)
2011-12-24

select trunc(sysdate,'day') from dual; --截取到周(本周第一天,即上周日)
2011-12-25

select trunc(sysdate,'iw') from dual; --本周第2天,即本周一
2011-12-26

select to_char(trunc(sysdate,'dd'),'yyyymmdd hh24:mi:ss') from dual;--截取到日(當日的零點零分零秒)
20111229 00:00:00

select trunc(sysdate,'hh24') from dual;  --截取到小時(當前小時,零分零秒)
2011-12-29 16:00:00

select trunc(sysdate,'mi') from dual; --截取到分(當前分,零秒)
2011-12-29 16:24:00

select trunc(sysdate,'ss') from dual ;--報錯,沒有精確到秒的格式

 

 

轉載自CSDN博客:http://blog.csdn.net/oracle1858/article/details/7162765

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved