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

SQL:¿cómo seleccionar un registro único para múltiples identificaciones en función de la fecha y hora máximas?

SELECT        a.Id, a.WindSpeed, a.DateTime
FROM          YourTable AS a
INNER JOIN     
(
    SELECT    ID, Max(DateTime) AS DateTime
    FROM      YourTable
    GROUP BY  ID
) AS b
ON            a.ID = b.ID
AND           a.DateTime = b.DateTime