gpt4 book ai didi

mysql - 我们可以在聚合函数中使用聚合函数吗?

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:08 26 4
gpt4 key购买 nike

select max(salary)
from employ
where salary < ( select max(salary)
from employ
having count(max(salary)>salary)=3);

在这里,我试图在聚合函数中使用聚合函数找出第 4 个最高薪水。它显示错误无效使用组函数。

有什么问题吗?请帮忙

谢谢。

最佳答案

最简单的方法是只使用limit:

select max(salary) as salary
from employ
order by salary desc
limit 3, 1;

关于mysql - 我们可以在聚合函数中使用聚合函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29999945/

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