SQL - 基于动态日期范围的动态总和
SQL - dynamic sum based on dynamic date range
我是 SQL 的新手,我什至不确定我想要实现的目标是否可行。
我有两个 table。第一个给出了一个帐号、一个 'from' 日期和一个 'to' 日期。第二个 table 显示每个帐户的每月交易量。
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
我想合并两个 table,使 Table 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
我相信,通过执行以下操作并将结果加入日期 table:
,可以为每个帐户单独实现此目的
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#
我想知道是否有可能实现这一点而不必为每个帐户分别填写帐户#、Date_from 和 Date_to(大约有 1,000 个帐户),但要为日期 table.
中的每个条目自动完成
谢谢!
您应该可以使用 join
和 group 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;
我是 SQL 的新手,我什至不确定我想要实现的目标是否可行。
我有两个 table。第一个给出了一个帐号、一个 'from' 日期和一个 'to' 日期。第二个 table 显示每个帐户的每月交易量。
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
我想合并两个 table,使 Table 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
我相信,通过执行以下操作并将结果加入日期 table:
,可以为每个帐户单独实现此目的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#
我想知道是否有可能实现这一点而不必为每个帐户分别填写帐户#、Date_from 和 Date_to(大约有 1,000 个帐户),但要为日期 table.
中的每个条目自动完成谢谢!
您应该可以使用 join
和 group 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;