以下的文章主要是通過相關的代碼的方式來引出Oracle時間的實際應用,前兩天我在相關的網站看到關於Oracle時間的實際應用的資料,如果你對其相關的實際操作有興趣的話,你就可以對以下的文章點擊觀看了。
- select to_char(sysdate,''hh:mi:ss'') TIME from all_objects
注意:第一條記錄的TIME 與最後一行是一樣的
可以建立一個函數來處理這個問題
- create or replace function sys_date return date is
- begin
- return sysdate;
- end;
- select to_char(sys_date,''hh:mi:ss'') from all_objects;
Oracle時間的應用中獲得小時數
- SELECT EXTRACT(HOUR FROM TIMESTAMP ''2001-02-16 2:38:40'') from offer
- SQL> select sysdate ,to_char(sysdate,''hh'') from dual;
- SYSDATE TO_CHAR(SYSDATE,''HH'')
- 2003-10-13 19:35:21 07
- SQL> select sysdate ,to_char(sysdate,''hh24'') from dual;
- SYSDATE TO_CHAR(SYSDATE,''HH24'')
- 2003-10-13 19:35:21 19
獲取年月日與此類似
Oracle時間的應用中年月日的處理
- select older_date,
- newer_date,
- years,
- months,
- abs(
- trunc(
- newer_date-
- add_months( older_date,years*12+months )
- )
- ) days
- from ( select
- trunc(months_between( newer_date, older_date )/12) YEARS,
- mod(trunc(months_between( newer_date, older_date )),
- 12 ) MONTHS,
- newer_date,
- older_date
- from ( select hiredate older_date,
- add_months(hiredate,rownum)+rownum newer_date
- from emp )
- )
以上的相關內容就是對Oracle時間的應用的相關項目的介紹,望你能有所收獲。