PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie überspringe ich mit anderen weiteren Datensätzen, wenn der Zustand erreicht ist?

Mit NOT EXISTS :

select t.* from tablename t
where col = 'Cancel'
  and not exists (
  select 1 from tablename
  where creation_date < t.creation_date and col <> t.col
)  

Sehen Sie sich die Demo an .