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

In PL/SQL, come si aggiorna una riga in base alla riga successiva?

Prova a usare un'istruzione merge. Non sono sicuro che faccia esattamente quello che vuoi, ma dovrebbe funzionare. Purtroppo la clausola insert è necessaria) ma non dovrebbe mai essere chiamata.

merge into t a
using (
  select 
    A, 
    B, 
    timestamp, 
    lag(A) over (order by id, timestamp) as prior_A,
    lag(timestamp) over (order by B, timestamp) as prior_timestamp
  from t) b
on  (a.B = b.B)
when matched then 
  update set a.a = case when b.timestamp-b.prior_timestamp <= 45 
    then b.prior_A else b.A end
when not matched then insert (B) values (null)