sql 查询一段时间内 每一天的统计数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 查询一段时间内 每一天的统计数据相关的知识,希望对你有一定的参考价值。
查询从一个时间点到另一个时间点内每一天的统计量,没有记录的天也要查询结果记为0;如表record记录表希望查询冲2014-09-01到2014-10-1时间内每一天的记录条数如果有一天没记录记为0;结果形式:
时间 条数
2014-09-01 1
2014-09-02 0
2014-09-03 3
使用hibernate链接数据库,在java中使用sql,不是在数据中查询,不能使用存储过程
童鞋这样只能把每一个时间点的记录都查出来,条数永远为1,不能把一天内的条数统计出来
看样子是mysql数据库咯
追问嗯,是的
参考技术A select 时间,count(时间) as 条数 from record where 时间 between '2014-09-01' and '2014-10-01' group by 时间或者
select 时间,count(时间) as 条数 from (
select convert(varchar(10),时间,120) as 时间 from record where 时间 between '2014-09-01' and '2014-10-01' ) as t group by 时间追问
convert(varchar(10),时间,120)这个函数的每一个参数什么意思
追答上面是mssql 的写法,你好像是mysql 估计执行不过去吧 。convert(varchar(10),时间,120) 3个参数分别是,要转换类型,待转换的值,转换格式编码。
结果就是 将 2014-10-01 12:12:12 这种格式 转换为 2014-10-01
你在 mysql 中 用 date_format 代替 效果一样,原理也差不多!
select time,count(time) from (
select date_format(last_update,'%y-%m-%d') time from actor
) as t group by time本回答被提问者和网友采纳
oracle 查询一段时间内每一天的统计数据sql怎么写
如表mange记录表希望查询从2015-09-01到2014-09-12时间内每一天的记录总条数如果有一天没记录记为0
显示效果如下(注意数量是根据时间统计出来的)
时间(date) 数量(number)
2015-09-01 0
2015-09-02 10
数据源表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 参考技术A 还有这么到的???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'
如果天数比较少 可以这么干,如果比较多可以写存储过程,循环搞 参考技术B 因为有"如果有一天没有记录记为0"这个要求,故需要实现一个函数:该函数返回起始与终止日期之间的所有日期记录,用table查询此函数返回的记录,并做统计。
以上是关于sql 查询一段时间内 每一天的统计数据的主要内容,如果未能解决你的问题,请参考以下文章
Oracle获取一段时间范围内的日期,从2006-01-01到2013-12-31的每一天的日期表