sql >> Base de Datos >  >> RDS >> Sqlserver

Seleccione filas distintas mientras 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)