SQL-基于动态日期范围的动态总和

时间:2018-12-10 19:23:36

标签: sql oracle dynamic aggregation

我是SQL的新手,我甚至不确定我要实现的目标是否可行。

我有两个桌子。第一个给出一个帐号,一个“开始”日期和一个“结束”日期。第二张表显示每个帐户的每月交易量。

Table 1 - Dates
Account#  Date_from   Date_to
--------  ---------   -------
123       2018-01-01  2018-12-10
456       2018-06-01  2018-12-10
789       2018-04-23  2018-11-01

Table 2 - Monthly_Volume
Account#   Date         Volume
---------  ----------   ------
123        2017-12-01   5
123        2018-01-15   5
123        2018-02-05   5
456        2018-01-01   10
456        2018-10-01   15
789        2017-06-01   5
789        2018-01-15   10
789        2018-06-20   7

我想以这样的方式合并两个表,使得表1中的每个帐户都具有第四列,该列给出了Date_from和Date_to之间的交易量之和。

Desired Result:
Account#  Date_from   Date_to     Sum(Volume)
--------  ---------   -------     -----------
123       2018-01-01  2018-12-10  10
456       2018-06-01  2018-12-10  15
789       2018-04-23  2018-11-01  7

我相信,通过执行以下操作并将结果添加到Dates表中,可以分别为每个帐户实现此目标:

SELECT
    Account#, 
    SUM(Volume)
FROM Monthly_Volume
WHERE 
    Account# = '123'
    AND Date_from >= TO_DATE('2018-01-01', 'YYYY-MM-DD')
    AND Date_to <= TO_DATE('2018-12-10', 'YYYY-MM-DD') 
GROUP BY Account#

我想知道的是,是否有可能无需单独填写每个帐户(有约1,000个帐户)的Account#,Date_from和Date_to来实现此目的,但是每个帐户都必须自动完成日期表中的条目。

谢谢!

1 个答案:

答案 0 :(得分:2)

您应该可以使用joingroup by

select d.account#, d.Date_from, d.Date_to, sum(mv.volume)
from dates d left join
     monthly_volume mv
     on mv.account# = d.account# and
        mv.date between d.Date_from and d.Date_to
group by d.account#, d.Date_from, d.Date_to;