Heim >Datenbank >MySQL-Tutorial >ORACLE任意时间段内所有天数日期查询

ORACLE任意时间段内所有天数日期查询

WBOY
WBOYOriginal
2016-06-07 14:57:421524Durchsuche

ORACLE任意时间段内所有天数查询,没必要借助什么all_objects 无 /* 查询2013-11-25至2014-12-28内所有日期天数 */select date '2013-11-25' + (rownum - 1) dt from dual connect by rownum = (date '2014-12-28' - date '2013-11-25' + 1) /* 查询2013-11-25

ORACLE任意时间段内所有天数查询,没必要借助什么all_objects
/* 查询2013-11-25至2014-12-28内所有日期天数 */
select 
   date '2013-11-25' + (rownum - 1) dt  
from  dual connect by rownum <= (date '2014-12-28' - date '2013-11-25' + 1)




/* 查询2013-11-25至2014-12-28包含的月份,以及每月包含的天数 */
select
          to_char(dt,'yyyy-mm'),
          count(to_char(dt,'yyyy-mm')) days,
          mm
        from(
          select
             date'2013-11-25' + (rownum - 1) dt,
             to_char(last_day(date'2013-11-25' + (rownum - 1)),'mm') mm
          from  dual connect by rownum <= (date'2014-12-28' - date'2013-11-25' + 1) 
        ) 
         group by to_char(dt,'yyyy-mm'),mm
         order by to_char(dt,'yyyy-mm')
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn