sql求某字段的count最大值,提示不允许出现分组函数

selectcode,count(code)fromdatabasewherecount(code)=(selectmax(count(code))fromdatabas... select code, count(code)
from database
where count(code) = (select max(count(code) ) from database)

请问应该如何修改,谢谢!
展开
 我来答
山高水清984
2020-03-28 · 超过53用户采纳过TA的回答
知道小有建树答主
回答量:94
采纳率:93%
帮助的人:23.6万
展开全部

根据字段分组后才能查出来不同值存在的数量,比如 country_id=1的存在几个,=200的存在几个。

select country_id, count(country_id)  from users GROUP BY country_id;

结果

从大到小排序后取出第一条

select * from (select country_id, count(country_id) as country_count  from users

GROUP BY country_id) biao order by country_count desc limit 1

结果

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式