本文介紹了在oracle資料庫中,對日期、時間的各種操作,包括:日期時間間隔操作、日期到字元操作、字元到日期操作、trunk / round函式的使用、毫秒級的資料型別等。
1.日期時間間隔操作
當前時間減去7分鐘的時間
select sysdate,sysdate - interval '7' minute from dual
當前時間減去7小時的時間
select sysdate - interval '7' hour from dual
當前時間減去7天的時間
select sysdate - interval '7' day from dual
當前時間減去7月的時間
select sysdate,sysdate - interval '7' month from dual
當前時間減去7年的時間
select sysdate,sysdate - interval '7' year from dual
時間間隔乘以乙個數字
select sysdate,sysdate - 8 *interval '2' hour from dual
2.日期到字元操作
select sysdate,to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual
select sysdate,to_char(sysdate,'yyyy-mm-dd hh:mi:ss') from dual
select sysdate,to_char(sysdate,'yyyy-ddd hh:mi:ss') from dual
select sysdate,to_char(sysdate,'yyyy-mm iw-d hh:mi:ss') from dual
3. 字元到日期操作
select to_date('2003-10-17 21:15:37','yyyy-mm-dd hh24:mi:ss') from dual
具體用法和上面的to_char差不多。
4. trunk / round函式的使用
select trunc(sysdate ,'year') from dual
select trunc(sysdate ) from dual
select to_char(trunc(sysdate ,'yyyy'),'yyyy') from dual
5.oracle有毫秒級的資料型別
返回當前時間 年月日小時分秒毫秒
select to_char(current_timestamp(5),'dd-mon-yyyy hh24:mi:ssxff') from dual;
返回當前 時間的秒毫秒,可以指定秒後面的精度(最大=9)
select to_char(current_timestamp(9),'mi:ssxff') from dual;
日期時間相關操作
當前日期時間的獲取 datetime datetime1 datetime.now 日期時間的運算 string str1 datetime1.addyears 1 tostring 加年份 string str1 datetime1.addmonths 1 tostring 加月份 string ...
Oracle 時間的相關操作
with t base as select 當前時間 sysdate as sys date,當前時間戳 到納秒,秒以下為假資料 to timestamp to char sysdate,yyyy mm dd hh24 mi ss 123456789 yyyy mm dd hh24 mi ss.ff...
Oracle時間日期操作
oracle時間日期操作 sysdate 5 24 60 60 在系統時間基礎上延遲5秒 sysdate 5 24 60 在系統時間基礎上延遲5分鐘 sysdate 5 24 在系統時間基礎上延遲5小時 sysdate 5 在系統時間基礎上延遲5天 add months sysdate,5 在系統時...