我有这个 SQL 查询,它搜索父母和孩子并计算权重。
select componentid,
(select sum(cs.weightkg)
from component c2, componentstats cs
where c2.componentstatsid = cs.componentstatsid
start with c2.componentid = c1.componentid
connect by prior c2.componentid = c2.fkcomponentid) sum_weightkg
from component c1
start with c1.fkcomponentid = 100
connect by prior componentid = fkcomponentid
问题是我希望 SQL 查询将总权重作为数字返回(它发现要聚合的所有数字)。
这是我得到的结果:
COMPONENTID SUM_WEIGHTKG
---------------------- ----------------------
201 410
231 210
323 10
你能帮我重写 SQL 查询吗?