Ver originalSELECT T1.*FROM tabla T1INNER JOIN ( SELECT ID, MAX(Fecha) Fecha FROM tabla GROUP BY ID) T2 ON T1.ID = T2.ID AND T1.Fecha = T2.Fecha