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-1MONTH 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/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/30126024/viewspace-2152983/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值