最も効率的な方法は、Postgresのdistinct on
を使用することです。 オペレーター
select distinct on (id) id, date, another_info
from the_table
order by id, date desc;
データベース間で機能する(ただし効率は低い)ソリューションが必要な場合は、ウィンドウ関数を使用できます。
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;
ウィンドウ関数を使用したソリューションは、ほとんどの場合、サブクエリを使用するよりも高速です。