下面通過一個(gè)查詢語句給大家介紹oracle查詢截至到當(dāng)前日期月份所在年份的所有月份,具體代碼如下所示:
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);
當(dāng)然,也可以指定具體的時(shí)間段,只要把months_between
里面的兩個(gè)日期改成具體的日期就行,
其中,trunc(sysdate, 'mm')
是返回當(dāng)月的第一天,trunc(sysdate, 'yy')
是返回當(dāng)年的第一天。
擴(kuò)展知識(shí)點(diǎn) Oracle trunc()函數(shù)的用法
/**************日期********************/
select trunc(sysdate) from dual --2013-01-06 今天的日期為2013-01-06
select trunc(sysdate, 'mm') from dual --2013-01-01 返回當(dāng)月第一天.
select trunc(sysdate,'yy') from dual --2013-01-01 返回當(dāng)年第一天
select trunc(sysdate,'dd') from dual --2013-01-06 返回當(dāng)前年月日
select trunc(sysdate,'yyyy') from dual --2013-01-01 返回當(dāng)年第一天
select trunc(sysdate,'d') from dual --2013-01-06 (星期天)返回當(dāng)前星期的第一天
select trunc(sysdate, 'hh') from dual --2013-01-06 17:00:00 當(dāng)前時(shí)間為17:35
select trunc(sysdate, 'mi') from dual --2013-01-06 17:35:00 TRUNC()函數(shù)沒有秒的精確
/***************數(shù)字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的數(shù)字。
Num_digits 用于指定取整精度的數(shù)字。Num_digits 的默認(rèn)值為 0。
TRUNC()函數(shù)截取時(shí)不進(jìn)行四舍五入
*/
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
總結(jié)
以上所述是小編給大家介紹的oracle查詢截至到當(dāng)前日期月份所在年份的所有月份,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
您可能感興趣的文章:- oracle 查詢當(dāng)天數(shù)據(jù)的sql條件寫法
- oracle使用to_date查詢一周的第一天日期
- Oracle查詢最近幾天每小時(shí)歸檔日志產(chǎn)生數(shù)量的腳本寫法
- oracle實(shí)現(xiàn)按天,周,月,季度,年查詢排序方法
- Oracle 獲取上周一到周末日期的查詢sql語句
- Oracle中查詢本月星期5的所有日期列表的語句
- Oracle查詢優(yōu)化日期運(yùn)算實(shí)例詳解
- Oracle實(shí)現(xiàn)查詢2個(gè)日期所跨過的月份列表/日期列表的方法分析
- oracle實(shí)現(xiàn)動(dòng)態(tài)查詢前一天早八點(diǎn)到當(dāng)天早八點(diǎn)的數(shù)據(jù)功能示例