假设我有下一个数据
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
我想为每个id提取最后一个信息:
id date another_info 1 2014-05-13 kgfd 2 2014-02-01 SADA 3 2014-06-12 fdsA
我该如何处理?
最有效的方法是使用Postgres的distinct on运算符
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;
在大多数情况下,具有窗口功能的解决方案比使用子查询更快。