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;
विंडो फ़ंक्शन के साथ समाधान ज्यादातर मामलों में उप-क्वेरी का उपयोग करने की तुलना में तेज़ होता है।