Предложението на Podiluska е добро. Ако имате Oracle 11g R2, общите таблични изрази са правилният начин. Рекурсивният характер на новия синтаксис ще ви позволи да се откажете от sys_connect_by_path
комбиниран с instr
, което сериозно ще навреди на ефективността ви.
Опитайте това:
select
child,
sum(total_quantity) total_quantity
from (
with h (parent, child, isleaf, quantity, total_quantity) as (
select
parent,
child,
isleaf,
quantity,
quantity total_quantity
from
itemhier
where
parent = 'ASSY001'
union all
select
ih.parent,
ih.child,
ih.isleaf,
ih.quantity,
ih.quantity * h.total_quantity total_quantity
from
itemhier ih
join
h on h.child = ih.parent
)
select * from h
where isleaf = 1
)
group by child;
Ето sqlfiddle:http://sqlfiddle.com/#!4/9840f/6