gpt4 book ai didi

mysql - 工作台 - 错误 : aggregates not allowed in GROUP BY clause

转载 作者:可可西里 更新时间:2023-11-01 08:39:47 27 4
gpt4 key购买 nike

我在网站上发现了其他几个有此错误消息的线程,但那里的解决方案似乎对我不起作用。

这是我要运行的查询:

SELECT 
o.name as Name,
o.vrank_tav__c as Vrank,
COUNT(c.enterprise_id) AS #_users_enterprise
FROM
(community_csv_james c JOIN
salesforce_data_opportunity o ON
c.enterprise_id = o.enterprise_id__c)
GROUP BY #_users_enterprise, Name, Vrank
ORDER BY #_users_enterprise DESC;

当我在 SQL Workbench J 上运行它时,出现以下错误:

SELECT 
o.name as Name,
o.vrank_tav__c as Vrank,
COUNT(c.enterprise_id) AS #_users_enterprise
FROM
(community_csv_james c JOIN
salesforce_data...

ERROR: aggregates not allowed in GROUP BY clause

我已经尝试了一些变体,但我提出了不同的错误消息。我应该如何编写此查询?

谢谢!

最佳答案

您不应该将聚合函数(您的 Count())的结果包含在分组依据中。该计数将与一个不同的名称/Vrank 相关联,因此您只需要对这些进行分组。这就是它给您特定错误的原因。

GROUP BY Name, Vrank

MySQL documentation for GROUP BY

关于mysql - 工作台 - 错误 : aggregates not allowed in GROUP BY clause,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37625014/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com