文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何理解oracle的interval时间格式

2024-04-02 19:55

关注

本篇文章为大家展示了如何理解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时间格式,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯