06 日期函式

2021-09-26 19:09:45 字數 737 閱讀 2818

1.當前時間

select sysdate from dual;
2.格式化時間yyyy-mm-dd hh24:mi:ss
select to_char(sysdate,

3.昨天、今天、明天

select

(sysdate-

1) 昨天,sysdate 今天,

(sysdate+

1) 明天 from dual;

4.兩個日期相差的月數

select ename,hiredate,months_between(sysdate,hiredate) 相差月數 from emp;

5.下個星期五

1 2 日期函式

1.2 日期函式select sysdate from dual 顯示的日期格式是系統預設格式 select to char sysdate,yyyy mon dd hh24 mi ss systime from dual 用途 使用者註冊時間的插入 insert into user table n...

15日期 時間函式

1.函式的概念 按指定格式輸入引數,返回正確結果的運算單元。2.返回當前日期 curdate current date 與curdate 等效 curdate 0 可以將當前日期值轉換為數值型 示例 select curdate current date curdate 0 curtime curr...

SQL2008日期函式

引數 示例 說明 dateadd 日期部分,數字,日期 select dateadd year,45,1990 12 11 返回 2035 12 11 00 00 00.000 select dateadd month,45,1990 12 11 返回 1994 09 11 00 00 00.000...