Oracle
 sql >> Database >  >> RDS >> Oracle

Query gerarchica Oracle SQL:appiattisci la gerarchia ed esegui l'aggregazione

Il suggerimento di Podiluska è buono. Se hai Oracle 11g R2, le espressioni di tabella comuni sono la strada da percorrere. La natura ricorsiva della nuova sintassi ti consentirà di abbandonare il sys_connect_by_path combinato con instr , che danneggerà seriamente le tue prestazioni.

Prova questo:

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;

Ecco lo sqlfiddle:http://sqlfiddle.com/#!4/9840f/6