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

Scenari e passaggi ottengono il problema dell'ultima modifica

Hmmm. . . puoi ottenere la prima data 44 dopo l'ultima data diversa da 44 utilizzando:

select min(start_date)
from t
where t.start_date > (select max(t2.start_date)
                      from t t2
                      where t2.step_key <> 44
                     );

Penso che questo sia quello che stai chiedendo.

Puoi anche usare le funzioni della finestra. Supponendo che la riga più recente sia "44":

select t.*
from (select t.*,
             row_number() over (order by start_date) as seqnum,
             row_number() over (partition by step_key order by start_date) as seqnum_sk
      from t
     ) t
where step_key = 44 and seqnum = seqnum_sk
order by start_date
fetch first 1 row only;