orcl資料庫 對當前時間區間的常用判斷

2021-10-18 05:11:26 字數 546 閱讀 6269

1 當前時間減去5分鐘的時間

2 select sysdate,sysdate - interval '5'

minute

from dual

3 當前時間減去5小時的時間

4 select sysdate - interval '5' hour from dual

5 當前時間減去5天的時間

6 select sysdate - interval '5' day from dual

7 當前時間減去5月的時間

8 select sysdate,sysdate - interval '5' month from dual

9 當前時間減去5年的時間

10 select sysdate,sysdate - interval '5' year from dual

11 時間間隔乘以乙個數字

12 select sysdate,sysdate -

8*interval '2' hour from dual

orcl資料庫的匯入 匯出

個人整理 orcl資料庫匯入整理 臨時表空間 create temporary tablespace cqq tempfile d caoqiuqin orcl cqq.dbf size 50m autoextend on next 50m maxsize 20480m extent managem...

資料庫獲得當前時間getdate

convert nvarchar 10 count time,121 convert為日期轉換函式,一般就是在時間型別 datetime,smalldatetime 與字串型別 nchar,nvarchar,char,varchar 相互轉換的時候才用到的函式的3個引數,第1個引數為,轉換後的大小,...

資料庫 mysql如何獲取當前時間

1.1 獲得當前日期 時間 date time 函式 now 除了now 函式能獲得當前的日期時間外,mysql 中還有下面的函式 current timestamp current timestamp localtime localtime localtimestamp localtimestam...