例如,我想选择id与最大日期组按类别,
其结果是:7,2,6
其结果是:7,2,6
id category date 1 a 2013-01-01 2 b 2013-01-03 3 c 2013-01-02 4 a 2013-01-02 5 b 2013-01-02 6 c 2013-01-03 7 a 2013-01-03 8 b 2013-01-01 9 c 2013-01-01
我可以知道如何在Postgresql这样做吗?
这是一个完美的用例
原文链接:https://www.f2er.com/postgresql/193591.htmlDISTINCT ON
(Postgres特定扩展的标准DISTINCT):
SELECT DISTINCT ON (category) id FROM tbl ORDER BY category,"date" DESC;
仔细按降序排序。如果列可以为NULL,您可能需要添加NULLS LAST:
> PostgreSQL sort by datetime asc,null first?
DISTINCT ON是最简单快速的。详细解释在这个相关的答案:
> Select first row in each GROUP BY group?
对于大表,考虑这种替代方法:
> Optimize groupwise maximum query
每个类别的性能优化:
> Optimize GROUP BY query to retrieve latest record per user