作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个问题
SELECT Pname, COUNT(*) AS Num
FROM employee
JOIN project
ON Dno = Dnum
GROUP BY Pname
它提供了这些结果:
Pname Num
Computerization 3
DatabaseSystems 8
InkjetPrinters 10
LaserPrinters 10
Middleware 8
Newbenefits 3
OperatingSystems 8
ProductX 4
ProductY 4
ProductZ 4
Reorganization 1
如何查询 Pname
和 Num
以返回计数最高的元素名称?
结果应该是这样的:
InkjetPrinters 10
LaserPrinters 10
最佳答案
您可以使用从子查询中指定的 HAVING 子句。
在 MySQL 中
SELECT Pname, COUNT(*) AS Num
FROM employee
JOIN project
ON Dno = Dnum
GROUP BY Pname
HAVING COUNT(*) = (
SELECT COUNT(*)
FROM employee
JOIN project
ON Dno = Dnum
GROUP BY Pname
ORDER BY COUNT(*) DESC
LIMIT 1
)
关于mysql - 如何从 GROUP BY 中获取 COUNT(*) 的最大值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36757855/
我是一名优秀的程序员,十分优秀!