sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo omitir con otros registros adicionales cuando se alcanza la condición?

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

Vea la demostración .