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

Oracle/Sybase SQL:ottieni valore in base a un record precedente (non un semplice LAG)

Un modo per farlo è con le funzioni di classificazione nidificate. Innanzitutto, assegna un valore costante a tutto ciò che ottiene un valore (usando max() over ) e quindi utilizzarlo come partizione.

select t.Invoice_Id, t.Invoice_Line, t.Kit_Flag, t.Part_Number,
       max(KitPart) over (partition by invoice_id, KitNum) as Parent_Part
from (select t.*,
             sum(isKit) over (partition by InvoiceId order by InvoiceLine) as KitNum
      from (select t.Invoice_Id, t.Invoice_Line, t.Kit_Flag, t.Part_Number,
                   (case when Kit_Flag = 'K' then 1 else 0 end) as IsKit,
                   (case when Kit_Flag = 'K' then Part_Number end) as KitPart
            from Invoice_Data t
           ) t
     ) t