Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Oracle/Sybase SQL - obtém valor com base em um registro anterior (não em um simples LAG)


Uma maneira de fazer isso é com funções de classificação aninhadas. Primeiro, atribua um valor constante a tudo que recebe um valor (usando max() over ) e, em seguida, use isso como uma partição.
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