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

Oracletrunc()函數的用法

編輯:Oracle教程

Oracletrunc()函數的用法


--Oracle trunc()函數的用法

/**************日期 TRUNC()函數沒有秒的精確 ********************/

select sysdate from dual --當時日期

select trunc(sysdate) from dual

select trunc(sysdate ,'DD') from dual --今天日期

select trunc(sysdate,'d')+7 from dual --本周星期日

select trunc(sysdate,'dy')+7 from dual --本周星期日

select trunc(sysdate,'day')+7 from dual --本周星期日

select trunc(sysdate,'q') from dual--本季開始日期

select trunc(sysdate,'month') from dual --本月開始日期

select trunc(sysdate ,'mm') from dual --本月開始日期

select trunc(sysdate,'year') from dual --本年開始日期

select trunc(sysdate ,'yyyy') from dual --本年開始日期

select trunc(sysdate ,'HH24') from dual --本小時開始時間

select trunc(sysdate ,'MI') from dual --本分鐘開始時間

select trunc(sysdate ,'CC') from dual --本世紀開始時間

select trunc(LAST_DAY(sysdate),'dd') from dual --本月最後一天
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved