标签:数据 java max 固定 技术 显示 blank title having
1、NUMTODSINTERVAL( number, expression )
参数说明:
number:数字类型的值
expression:单位,这里的单位是固定的,有DAY,HOUR,MINUTE,SECOND
1
2
3
4
5
6
7
8
|
举例说明: -- 当前日期加 25 天 select sysdate, sysdate + numtodsinterval( 25 , ‘day‘ ) as res from dual; -- 当前日期加 2 小时,这里转换了下时间格式,更容易看出来,下图所示 select to_char(sysdate, ‘yyyy-MM-dd hh24:mi:ss‘ ), to_char(sysdate + numtodsinterval( 2 , ‘hour‘ ), ‘yyyy-MM-dd hh24:mi:ss‘ ) as res from dual; -- 当前日期加分钟,秒,可以依葫芦画瓢,尝试写一下 |
显示效果如下图所示:
与此同时,和他相同的函数是下面的函数
2、NUMTOYMINTERVAL( number, expression ) 参数说明: number:数字类型的值 expression:单位,这里的单位是固定的,有MONTH,YEAR
1
2
3
4
5
6
|
举例说明: -- 当前日期加 2 月 select sysdate, sysdate + numtoyminterval( 2 , ‘month‘ ) as res from dual; -- 当前日期加 2 年 select sysdate, sysdate + numtoyminterval( 2 , ‘year‘ ) as res from dual; |
显示效果如下图所示:
标签:数据 java max 固定 技术 显示 blank title having
原文地址:http://www.cnblogs.com/ylldbk/p/6269993.html