报错[42803] ERROR: column "a.sync_country" must appear in the GROUP BY clause or be used in an aggregate function 位置:8079
时间: 2024-09-25 11:20:37 浏览: 35
Mattermost-Integration-with-Appear.in:Appear.in和Jitsi的斜线类型集成与Mattermost一起使用
这个错误信息表示在PostgreSQL数据库查询中,你在GROUP BY子句之外引用了列"a.sync_country",但在聚合函数(如COUNT、SUM、AVG等)之外,这在SQL中是不允许的,因为没有指定如何对这个列进行分组操作。
在SQL中,GROUP BY子句用于将结果集按照一列或多列进行分组,而不在GROUP BY内的非聚合列需要在聚合函数中使用,或者出现在GROUP BY中。如果你想要计算同步国家"a.sync_country"的唯一值,你应该将其添加到GROUP BY子句中。
修正后的SQL示例可能如下:
```sql
SELECT DISTINCT a.sync_country, a.sa_id, a.due_week, a.rn_dueweek, sa_pass_count, sa_fpd1, sa_fpd7, sa_fpd15
FROM t6 AS a
JOIN (select * from t8 where rn_applyweek=1) AS b
ON a.sa_id=b.sa_id AND a.sync_country=b.sync_country
JOIN (select * from t7) AS c
ON a.sync_country=c.sync_country AND a.due_week=c.due_week
WHERE ( (a.rn_dueweek=2 AND sa_fpd7-fpd7>0.05 AND sa_perform7>2) OR (a.rn_dueweek=3 AND sa_fpd7-fpd7>0.1 AND sa_perform7>2) OR (a.rn_dueweek=4 AND sa_fpd7-fpd7>0.1 AND sa_perform7>2) )
AND sa_pass_count>3
GROUP BY a.sync_country, a.sa_id, a.due_week, a.rn_dueweek, sa_pass_count, sa_fpd1, sa_fpd7, sa_fpd15;
```
或者,如果只需要sync_country的汇总信息,可以去掉DISTINCT关键字,因为COUNT(*)会自动处理去重。
阅读全文