oracle查询截⾄到当前⽇期⽉份所在年份的所有⽉份
下⾯通过⼀个查询语句给⼤家介绍oracle查询截⾄到当前⽇期⽉份所在年份的所有⽉份,具体代码如下所⽰:
SELECT to_number(TO_CHAR(add_months(trunc(sysdate, 'yy'), ROWNUM - 1), 'MM')) as month
FROM DUAL
CONNECT BY ROWNUM <=
(select months_between(trunc(sysdate, 'mm'), trunc(sysdate, 'yy')) + 1
from dual);
当然,也可以指定具体的时间段,只要把months_between⾥⾯的两个⽇期改成具体的⽇期就⾏,
其中,trunc(sysdate, 'mm')是返回当⽉的第⼀天,trunc(sysdate, 'yy')是返回当年的第⼀天。
扩展知识点 Oracle trunc()函数的⽤法
/**************⽇期********************/
select trunc(sysdate) from dual --2013-01-06 今天的⽇期为2013-01-06
select trunc(sysdate, 'mm') from dual --2013-01-01 返回当⽉第⼀天.
select trunc(sysdate,'yy') from dual --2013-01-01 返回当年第⼀天
select trunc(sysdate,'dd') from dual --2013-01-06 返回当前年⽉⽇
select trunc(sysdate,'yyyy') from dual --2013-01-01 返回当年第⼀天
oracle四舍五入
select trunc(sysdate,'d') from dual --2013-01-06 (星期天)返回当前星期的第⼀天
select trunc(sysdate, 'hh') from dual --2013-01-06 17:00:00 当前时间为17:35
select trunc(sysdate, 'mi') from dual --2013-01-06 17:35:00 TRUNC()函数没有秒的精确
/***************数字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的数字。
Num_digits ⽤于指定取整精度的数字。Num_digits 的默认值为 0。
TRUNC()函数截取时不进⾏四舍五⼊
*/
select trunc(123.458) from dual --123
.select trunc(123.458,0) from dual --123
.select trunc(123.458,1) from dual --123.4
.select trunc(123.458,-1) from dual --120
.select trunc(123.458,-4) from dual --0
.select trunc(123.458,4) from dual --123.458
.select trunc(123) from dual --123
.
select trunc(123,1) from dual --123
.select trunc(123,-1) from dual --120
总结
以上所述是⼩编给⼤家介绍的oracle查询截⾄到当前⽇期⽉份所在年份的所有⽉份,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
如果你觉得本⽂对你有帮助,欢迎转载,烦请注明出处,谢谢!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。