PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment sauter avec d'autres enregistrements supplémentaires lorsque la condition est atteinte ?

Avec 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
)  

Voir la démo .