Oracle SQL語句日期的使用(寫的太好了,必須轉)
阿新 • • 發佈:2019-02-08
1、查詢現在時刻
SQL 程式碼- select sysdate from dual
結果:2010-5-13 10:40:26
2、對日期型轉換成字串型,使用to_char函式
rameter | Explanation |
---|---|
YEAR | Year, spelled out |
YYYY | 4-digit year |
YYY YY Y |
Last 3, 2, or 1 digit(s) of year. |
IYY IY I |
Last 3, 2, or 1 digit(s) of ISO year. |
IYYY | 4-digit year based on the ISO standard |
Q | Quarter of year (1, 2, 3, 4; JAN-MAR = 1). |
MM | Month (01-12; JAN = 01). |
MON | Abbreviated name of month. |
MONTH | Name of month, padded with blanks to length of 9 characters. |
RM | Roman numeral month (I-XII; JAN = I). |
WW | Week of year (1-53) where week 1 starts on the first day of the year and continues to the seventh day of the year. |
W | Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh. |
IW | Week of year (1-52 or 1-53) based on the ISO standard. |
D | Day of week (1-7). |
DAY | Name of day. |
DD | Day of month (1-31). |
DDD | Day of year (1-366). |
DY | Abbreviated name of day. |
J | Julian day; the number of days since January 1, 4712 BC. |
HH | Hour of day (1-12). |
HH12 | Hour of day (1-12). |
HH24 | Hour of day (0-23). |
MI | Minute (0-59). |
SS | Second (0-59). |
SSSSS | Seconds past midnight (0-86399). |
FF | Fractional seconds. |
- select to_char(sysdate,'yyyymmdd hh24:mi:ss')
結果:20100513 10:40:45
相反的是to_date函式
3、某月的最後一天 用last_day函式
SQL 程式碼- select last_day(sysdate) from dual
結果:2010-5-31 10:44:21
4、加法計算 +1即增加一天,如果精確到小時、分鐘、秒則用除法
如:獲得下月第一天時刻:
SQL 程式碼- select last_day(sysdate)+1 from dual
再如:獲得一小時後時刻
SQL 程式碼- select sysdate+1/24 from dual
再如:獲得10秒後的時刻
SQL 程式碼- select sysdate+1/24/60/60*10 from dual
5、獲得下一星期幾的日期 使用next_day函式
如現在要獲得下個星期一的日期:
SQL 程式碼- select next_day(sysdate,2) from dual
注意這裡是2,為什麼是2?因為這裡有效的值是1-7,而1表示星期日,2表示星期一……以此類推到星期六。
6、獲得某年、某月的第一天,或者某天的0點整時刻 使用trunc函式
SQL 程式碼- select TRUNC(sysdate,'YYYY') from dual
結果:2010-01-01
SQL 程式碼- select TRUNC(sysdate,'MM') from dual
結果:2010-05-01
SQL 程式碼- select TRUNC(sysdate) from dual
結果:2010-05-13 (今天)
SQL 程式碼- select TRUNC(sysdate,'HH') from dual
結果:2010-05-13 10:00:00 (現在是10點多)
7、使用add_months可以以當前日期為基準查詢上幾月、下幾月的日期
SQL 程式碼- select add_months(sysdate,-1) from dual
負數表示查詢上n月
如果要查上一年,則是-12,並沒有單獨的add_years函式!
再想:如果要查上一週,有沒有特殊函式可提供?沒有,一週就是7天嘛,所以查詢語句為:
SQL 程式碼- select sysdate-7 from dual
綜述:通過上面的彙總,應該能應付一般的SQL查詢日期的應用了。一般情況下要綜合上面所說的多個查詢才能得出自己想要的結果。