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
)
Guarda la demo
.
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
)
Guarda la demo
.
Impara a archiviare e analizzare documenti su file system di Windows con la ricerca semantica di SQL Server - Parte 1
Converti facilmente le tue query di Microsoft Access con questo nuovo strumento!
Come creare una tabella con più chiavi esterne e non confondersi
3 metodi per ricostruire tutti gli indici per tutte le tabelle con T-SQL nel database di SQL Server