Najbardziej wydajnym sposobem jest użycie distinct on
Postgresa operator
select distinct on (id) id, date, another_info
from the_table
order by id, date desc;
Jeśli potrzebujesz rozwiązania, które działa w różnych bazach danych (ale jest mniej wydajne), możesz użyć funkcji okna:
select id, date, another_info
from (
select id, date, another_info,
row_number() over (partition by id order by date desc) as rn
from the_table
) t
where rn = 1
order by id;
Rozwiązanie z funkcją okna jest w większości przypadków szybsze niż użycie podzapytania.