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

Selecione linhas distintas enquanto agrupa por valor máximo

SELECT
ID, Name, EventTime, State
FROM
MyTable mt
WHERE EventTime = (SELECT MAX(EventTime) FROM MyTable sq WHERE mt.ID = sq.ID)