SQL开发知识:教你oracle如何查询截至到当前日期月份所在年份的所有月份

下面通过一个查询语句给大家介绍SQL开发知识:教你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 返回当年第一天
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

总结

以上所述是小编给大家介绍的SQL开发知识:教你oracle如何查询截至到当前日期月份所在年份的所有月份,大家如有疑问可以留言,或者联系站长。感谢亲们支持!!!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!


数据运维技术 » SQL开发知识:教你oracle如何查询截至到当前日期月份所在年份的所有月份