Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Como seleciono apenas a última entrada em uma tabela?

select p.projectName, t.ThingName
from projects p
join projectThingLink l on l.projectId = p.projectId
join thing t on t.thingId = l.thingId
where l.createdDate =
( select max(l2.createdDate)
  from projectThingLink l2
  where l2.thingId = l.thingId
);

NOTA:Corrigido após comentário