鉴于此表
| id | name | created_at |
| 1 | test | 2015-02-24 11:13:28.605968 |
| 2 | other | 2015-02-24 13:04:56.968004 |
| 3 | test | 2015-02-24 11:14:24.670765 |
| 4 | test | 2015-02-24 11:15:05.293904 |
此查询仅返回行id 2和id 4。
SELECT DISTINCT ON (documents.name) documents.*
FROM "documents"
ORDER BY documents.name, documents.created_at DESC
如何返回受影响的行数?像
这样的东西SELECT COUNT(DISTINCT ON (documents.name) documents.*) FROM "documents"
答案 0 :(得分:3)
您可以使用外部查询:
SELECT COUNT(1)
FROM (
SELECT DISTINCT ON (name) *
FROM documents
ORDER BY name, created_at DESC
) alias