oracle的interval時間格式的總結
INTERVAL:時間間隔
INTERVAL YEAR TO MONTH,年份和月份之間必須有-
包含年、月的一段時間的間隔
INTERVAL 'integer [- integer ]' { YEAR | MONTH } [ (precision) ] [ TO { YEAR | MONTH } ]
'integer [-integer]' specifies integer values for the leading and optional trailing field of the literal. If the leading field is YEAR and the trailing field is MONTH, then the range of integer values for the month field is 0 to 11.
precision is the maximum number of digits in the leading field. The valid range of the leading field precision is 0 to 9 and its default value is 2.
Restriction on the Leading Field :If you specify a trailing field, then it must be less significant than the leading field. For example, INTERVAL '0-1' MONTH TO YEAR is not valid.
"integer [-integer]"指定前導和可選的尾隨欄位的整型值。如果前導的欄位是年份,而尾隨欄位是月,月欄位的整數值範圍為0到11。
"precision" 指定前導欄位的最大位數。前導欄位精度的有效範圍為0到9,其預設值為2。
前導列的限制:如果您指定了一個尾隨欄位,那麼它就必須小於前導欄位。例如,INTERVAL '0-1'月到YEAR是無效的。
select sysdate,sysdate + interval '1' year from dual;--當前時間+1年
select sysdate,sysdate+numtoyminterval(1,'year') as res from dual;--當前時間+1年
select sysdate,sysdate + interval '1-0' year to month from dual;--當前時間+1年
select sysdate,sysdate + interval '1-1' year to month from dual;--當前時間+1年1月
select sysdate,sysdate + interval '100' year(3) from dual;--當前時間+100年
select sysdate,sysdate + interval '100-1' year(3) to month from dual;--當前時間+100年1月
select sysdate,sysdate + interval '100' year(2) from dual;--報錯ORA-01873: 間隔的前導精度太小,因為100是3位數,而2只指定了兩位
select sysdate,sysdate + interval '100-1' year(2) to month from dual;--報錯ORA-01873: 間隔的前導精度太小,因為100是3位數,而2只指定了兩位
INTERVAL DAY TO SECOND
包含天、小時、分鐘、秒的一段時間的間隔
INTERVAL '{ integer | integer time_expr | time_expr }'
{ { DAY | HOUR | MINUTE } [ (leading_precision) ]
| SECOND [ (leading_precision [, fractional_seconds_precision ]) ]
}
[ TO { DAY | HOUR | MINUTE | SECOND [ (fractional_seconds_precision) ] } ]
'integer' specifies the number of days. If this value contains more digits than the number specified by the leading precision, then Oracle returns an error.
'time_expr' specifies a time in the format HH[:MI[:SS[.n]]] or MI[:SS[.n]] or SS[.n], where n specifies the fractional part of a second. If n contains more digits than the number specified by fractional_seconds_precision, then n is rounded to the number of digits specified by the fractional_seconds_precision value. You can specify time_expr following an integer and a space only if the leading field is DAY.
"integer"指定天數。如果這個值包含的數字超過了主要精度指定的數字,那麼Oracle將返回一個錯誤。
"time_expr"指定格式HH:MI:SS的時間。
select sysdate,sysdate+1 from dual;--當前時間+1天
select sysdate,sysdate + interval '1' day from dual;--當前時間+1天
select sysdate,sysdate+numtodsinterval(1,'day') as res from dual;--當前時間+1天
select sysdate,sysdate + interval '1 0' day to hour from dual;--當前時間+1天
select sysdate,sysdate + interval '1 1' day to hour from dual;--當前時間+1天1小時
select sysdate,sysdate + interval '1 01:01' day to minute from dual;--當前時間+1天1小時1分鐘
select sysdate,sysdate + interval '1 01:01:01' day to second from dual;--當前時間+1天1小時1分鐘1秒
select sysdate,sysdate -interval '1' year,sysdate -interval '1' month,sysdate -interval '1' day,sysdate -interval '1' HOUR,sysdate -interval '1' MINUTE,sysdate-interval '1' second from dual;
--此刻、1年前、1月前、1天前、1小時前、1分鐘、1秒前的時間點
INTERVAL YEAR TO MONTH,年份和月份之間必須有-
包含年、月的一段時間的間隔
INTERVAL 'integer [- integer ]' { YEAR | MONTH } [ (precision) ] [ TO { YEAR | MONTH } ]
'integer [-integer]' specifies integer values for the leading and optional trailing field of the literal. If the leading field is YEAR and the trailing field is MONTH, then the range of integer values for the month field is 0 to 11.
precision is the maximum number of digits in the leading field. The valid range of the leading field precision is 0 to 9 and its default value is 2.
Restriction on the Leading Field :If you specify a trailing field, then it must be less significant than the leading field. For example, INTERVAL '0-1' MONTH TO YEAR is not valid.
"integer [-integer]"指定前導和可選的尾隨欄位的整型值。如果前導的欄位是年份,而尾隨欄位是月,月欄位的整數值範圍為0到11。
"precision" 指定前導欄位的最大位數。前導欄位精度的有效範圍為0到9,其預設值為2。
前導列的限制:如果您指定了一個尾隨欄位,那麼它就必須小於前導欄位。例如,INTERVAL '0-1'月到YEAR是無效的。
select sysdate,sysdate + interval '1' year from dual;--當前時間+1年
select sysdate,sysdate+numtoyminterval(1,'year') as res from dual;--當前時間+1年
select sysdate,sysdate + interval '1-0' year to month from dual;--當前時間+1年
select sysdate,sysdate + interval '1-1' year to month from dual;--當前時間+1年1月
select sysdate,sysdate + interval '100' year(3) from dual;--當前時間+100年
select sysdate,sysdate + interval '100-1' year(3) to month from dual;--當前時間+100年1月
select sysdate,sysdate + interval '100' year(2) from dual;--報錯ORA-01873: 間隔的前導精度太小,因為100是3位數,而2只指定了兩位
select sysdate,sysdate + interval '100-1' year(2) to month from dual;--報錯ORA-01873: 間隔的前導精度太小,因為100是3位數,而2只指定了兩位
INTERVAL DAY TO SECOND
包含天、小時、分鐘、秒的一段時間的間隔
INTERVAL '{ integer | integer time_expr | time_expr }'
{ { DAY | HOUR | MINUTE } [ (leading_precision) ]
| SECOND [ (leading_precision [, fractional_seconds_precision ]) ]
}
[ TO { DAY | HOUR | MINUTE | SECOND [ (fractional_seconds_precision) ] } ]
'integer' specifies the number of days. If this value contains more digits than the number specified by the leading precision, then Oracle returns an error.
'time_expr' specifies a time in the format HH[:MI[:SS[.n]]] or MI[:SS[.n]] or SS[.n], where n specifies the fractional part of a second. If n contains more digits than the number specified by fractional_seconds_precision, then n is rounded to the number of digits specified by the fractional_seconds_precision value. You can specify time_expr following an integer and a space only if the leading field is DAY.
"integer"指定天數。如果這個值包含的數字超過了主要精度指定的數字,那麼Oracle將返回一個錯誤。
"time_expr"指定格式HH:MI:SS的時間。
select sysdate,sysdate+1 from dual;--當前時間+1天
select sysdate,sysdate + interval '1' day from dual;--當前時間+1天
select sysdate,sysdate+numtodsinterval(1,'day') as res from dual;--當前時間+1天
select sysdate,sysdate + interval '1 0' day to hour from dual;--當前時間+1天
select sysdate,sysdate + interval '1 1' day to hour from dual;--當前時間+1天1小時
select sysdate,sysdate + interval '1 01:01' day to minute from dual;--當前時間+1天1小時1分鐘
select sysdate,sysdate + interval '1 01:01:01' day to second from dual;--當前時間+1天1小時1分鐘1秒
select sysdate,sysdate -interval '1' year,sysdate -interval '1' month,sysdate -interval '1' day,sysdate -interval '1' HOUR,sysdate -interval '1' MINUTE,sysdate-interval '1' second from dual;
--此刻、1年前、1月前、1天前、1小時前、1分鐘、1秒前的時間點
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30126024/viewspace-2152983/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle interval日期函式的bug!Oracle函式
- Oracle臨時表的用法總結FLOracle
- 【時間戳轉普通時間格式的方法】時間戳
- [時間格式的轉換]
- iphone時間格式的支援iPhone
- 總結Oracle根據時間查詢的一些常見情況Oracle
- ORACLE臨時表總結Oracle
- Python中的時間處理大總結Python
- win10如何修改時間日期格式 調整時間格式和日期格式的方法Win10
- jackson時間格式的處理
- Golang結構體json的時間格式化解決辦法Golang結構體JSON
- python 解決讀取檔案時格式不支援的總結Python
- 專案總結 | 對【時間】構建的特徵工程特徵工程
- MySQL 時間戳的 獲取 & 轉換為特定時間格式MySql時間戳
- JavaScript 日期和時間的格式化JavaScript
- jira修改RoadMap裡的時間格式,硬核日期格式化
- 時間戳轉化為時間格式時間戳
- php 驗證格式的函式總結PHP函式
- 日期和時間格式
- 從10046 trace 的trca報告中總結的時間模型示例模型
- 寫一個格式化時間的方法
- Golang中的格式化時間輸出Golang
- pbootcms模板如何呼叫時間 時間格式大全boot
- Python時間模組常用操作總結Python
- [LeetCode] 57. Insert Interval 插入區間LeetCode
- Oracle計算時間函式(對時間的加減numtodsinterval、numtoyminterval)Oracle函式
- 日期時間格式化
- 轉換UTC時間格式
- java時間格式轉化Java
- as3 時間格式工具S3
- Python格式化時間Python
- 格式化時間 戳
- ORACLE中日期和時間函式彙總(轉載)Oracle函式
- 匹配十二小時制時間格式
- 倒數計時快取時間問題總結快取
- js時間戳與日期格式的相互轉換JS時間戳
- Oracle特性總結Oracle
- oracle外來鍵約束的總結Oracle