如何理解oracle的interval时间格式

38次阅读
没有评论

共计 2909 个字符,预计需要花费 8 分钟才能阅读完成。

本篇文章为大家展示了如何理解 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 秒前的时间点

上述内容就是如何理解 oracle 的 interval 时间格式,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注丸趣 TV 行业资讯频道。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-18发表,共计2909字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)