"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Efficiently Retrieve the Last Row for Each Unique Identifier in PostgreSQL?

How to Efficiently Retrieve the Last Row for Each Unique Identifier in PostgreSQL?

Posted on 2025-04-04
Browse:872

How to Efficiently Retrieve the Last Row for Each Unique Identifier in PostgreSQL?

Postgresql: Extracting the Last Row for Each Unique Identifier

In PostgreSQL, you may encounter situations where you need to extract the information from the last row associated with each distinct identifier within a dataset. Consider the following data:

<pre> id date another_info
1 2014-02-01 kjkj
1 2014-03-11 ajskj
1 2014-05-13 kgfd
2 2014-02-01 SADA
3 2014-02-01 sfdg
3 2014-06-12 fdsA
</pre>

To retrieve the last row of information for each unique id in the dataset, you can employ Postgres' efficient distinct on operator:

select distinct on (id) id, date, another_info
from the_table
order by id, date desc;

This query will return the following output:

<pre> id date another_info
1 2014-05-13 kgfd
2 2014-02-01 SADA
3 2014-06-12 fdsA
</pre>

If you prefer a cross-database solution that may sacrifice slight performance, you can use a window function:

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;

In most cases, the solution involving a window function is faster than using a sub-query.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3