你的问题没太描述清楚,是不是两条数据直接求和就行,格式大概就下面这样
with aa as(
……
),bb as(
)
select sum(),sum(),sum() ……
from(
select * from aa union all select * from bb
)cc