oracle 查询一段时间内每一天的统计数据sql怎么写

如表mange记录表希望查询从2015-09-01到2014-09-12时间内每一天的记录总条数如果有一天没记录记为0
显示效果如下(注意数量是根据时间统计出来的)
时间(date) 数量(number)
2015-09-01 0
2015-09-02 10

可以写一个简单的procedure来实现,原理是遍历日期范围,并查询日期资料笔数,写入表。
数据源表test03
1 2016-06-01 1
2 2016-06-02 1
3 2016-06-05 1
4 2016-06-04 1
5 2016-06-04 1

procedure代码如下:
create or replace procedure loop_by_date(pbeg_tim in varchar2,--开始日期
pend_tim in varchar2,--结束日期
errmessage out varchar2) is

nCount number(10); --总天数
i_point number(10); --当天
is_zero number(10); --当天是否有记录
begin
nCount := 0;
i_point := 0;
is_zero := 0;

select ROUND(to_date(pend_tim, 'yyyy-mm-dd') -
to_date(pbeg_tim, 'yyyy-mm-dd'))
into nCount
from dual;

delete from test02;

<<fst_loop>>
loop

select count(*)
into is_zero
from test03
where date1 =
to_char(to_date(pbeg_tim, 'yyyy-mm-dd') + i_point, 'yyyy-mm-dd');

insert into test02
(date01, nccount)
values
(to_char(to_date(pbeg_tim, 'yyyy-mm-dd') + i_point, 'yyyy-mm-dd'),
is_zero);

i_point := i_point + 1;
exit fst_loop when i_point >= nCount;
end loop fst_loop;
--end;

end loop_by_date;

传入参数"2016-06-01"~~"2016-06-10"并执行,结果写入test02为:
1 2016-06-01 1
2 2016-06-02 1
3 2016-06-03 0
4 2016-06-04 2
5 2016-06-05 1
6 2016-06-06 0
7 2016-06-07 0
8 2016-06-08 0
9 2016-06-09 0
温馨提示:内容为网友见解,仅供参考
第1个回答  2016-06-12
还有这么到的???2015-09-01到2014-09-12

select date,count(*) as number from table_name where date = '2015-09-01'
union
select date,count(*) as number from table_name where date = '2015-09-02'

如果天数比较少 可以这么干,如果比较多可以写存储过程,循环搞本回答被网友采纳
第2个回答  2016-06-12
因为有"如果有一天没有记录记为0"这个要求,故需要实现一个函数:该函数返回起始与终止日期之间的所有日期记录,用table查询此函数返回的记录,并做统计。
相似回答