gpt4 book ai didi

mysql - SQL 中不同值的最大计数

转载 作者:可可西里 更新时间:2023-11-01 07:56:17 26 4
gpt4 key购买 nike

如果已回答此问题,但无法使用搜索工具或基本的 google 查询找到它,请原谅我。

我正在尝试返回一个值,该值指示 SQL 中列中任何不同值的最大行数。

例如,我想使用类似的东西

SELECT MAX(COUNT(DISTINCT person_id) AS MAX_NUM_PERS_ROW
FROM mytable

如果表中行数最多的人有 5 行,则返回的值为 5...

感谢任何帮助!

最佳答案

您可以使用嵌套聚合来做到这一点:

select max(cnt)
from (select person_id, count(*) as cnt
from mytable
group by person_id
) p;

如果你真的想要这个人,你也可以这样做:

select person_id, count(*) as cnt
from mytable
group by person_id
order by count(*) desc
limit 1;

关于mysql - SQL 中不同值的最大计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26258248/

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