Il modo più efficiente è utilizzare distinct on
di Postgres operatore
select distinct on (id) id, date, another_info
from the_table
order by id, date desc;
Se desideri una soluzione che funzioni su più database (ma meno efficiente) puoi utilizzare una funzione finestra:
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;
La soluzione con una funzione finestra è nella maggior parte dei casi più veloce rispetto all'utilizzo di una sottoquery.