oracle 如何查询两个时间段里的每一天数据之和。(只有开始日期和结束日期,没有每一天日期)

如题所述

这样的不知道每一天的日期,直接where .. between ... and ... group by...就可以了。
如果想给定日期段,获取每天作为一条记录,可以有一种方式,但日期范围不能太大,否则效率会有问题。
select trunc(Start_Date)+rownum from 表名
where rownum<=trunc(End_Date)-trunc(Start_Date)

前提是:表中要有足够的记录数,但也不能太多,否则效率同样会低。
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-12
select trunc(date列),sum(a)
form table
where date列 between xx and xx
group by trunc(date列)
第2个回答  2012-04-12
select distinct trunc(time_column) day1, value from table_name group by trunc(time_column)
相似回答