我创建了多个报告,需要创建一个最终报告,其中包含来自这些多个报告的数据。
以下是我的情况:
Report A:
Column Column1 Column2 Column3 Column4 Calucation
Row-A a1 a2 a3 a4 CalA.A
Row-B b1 b2 b3 b4 CalB.A
Row-C c1 c2 c3 c4 CalC.A
Report B:
Column Column1 Column2 Column3 Column4 Calucation
Row-A a1 a2 a3 a4 CalA.B
Row-B b1 b2 b3 b4 CalB.B
Row-C c1 c2 c3 c4 CalC.B
Report Aggregated
Column Column1 Column2 Total
Row-A CalA.A CalA.B Total.A
Row-B CalB.A CalB.B Total.B
Row-C CalC.A CalC.B Total.C
正如所见,报告 A 和报告 B 是从 postgres 数据库计算的。
聚合报表需要获取报表 A 和报表 B 中计算的数据。
请帮助我找到一种方法,将这些多份报告中的数据传递到最终报告中。
提前致谢。