程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle時間實際應用代碼的示例

Oracle時間實際應用代碼的示例

編輯:Oracle數據庫基礎

以下的文章主要是通過相關的代碼的方式來引出Oracle時間的實際應用,前兩天我在相關的網站看到關於Oracle時間的實際應用的資料,如果你對其相關的實際操作有興趣的話,你就可以對以下的文章點擊觀看了。

  1. select to_char(sysdate,''hh:mi:ss'') TIME from all_objects  

注意:第一條記錄的TIME 與最後一行是一樣的

可以建立一個函數來處理這個問題

  1. create or replace function sys_date return date is   
  2. begin   
  3. return sysdate;   
  4. end;   
  5. select to_char(sys_date,''hh:mi:ss'') from all_objects;   

Oracle時間的應用中獲得小時數

  1. SELECT EXTRACT(HOUR FROM TIMESTAMP ''2001-02-16 2:38:40'') from offer   
  2. SQL> select sysdate ,to_char(sysdate,''hh'') from dual;   
  3. SYSDATE TO_CHAR(SYSDATE,''HH'')   
  4. 2003-10-13 19:35:21 07   
  5. SQL> select sysdate ,to_char(sysdate,''hh24'') from dual;   
  6. SYSDATE TO_CHAR(SYSDATE,''HH24'')   
  7. 2003-10-13 19:35:21 19   

獲取年月日與此類似

Oracle時間的應用中年月日的處理

  1. select older_date,   
  2. newer_date,   
  3. years,   
  4. months,   
  5. abs(   
  6. trunc(   
  7. newer_date-   
  8. add_months( older_date,years*12+months )   
  9. )   
  10. ) days   
  11. from ( select   
  12. trunc(months_between( newer_date, older_date )/12) YEARS,   
  13. mod(trunc(months_between( newer_date, older_date )),   
  14. 12 ) MONTHS,   
  15. newer_date,   
  16. older_date   
  17. from ( select hiredate older_date,   
  18. add_months(hiredate,rownum)+rownum newer_date   
  19. from emp )   
  20. )  

以上的相關內容就是對Oracle時間的應用的相關項目的介紹,望你能有所收獲。

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