gpt4 book ai didi

mysql - 如何找到列的第 n 个最高值?

转载 作者:IT王子 更新时间:2023-10-28 23:45:20 27 4
gpt4 key购买 nike

有没有类似的命令:

  • tbl_salary 中的第二高薪水

  • tbl_salary 中薪水第四高 ?

我见过:

select salary
from tbl_salary t
where &n = (
select count(salary)
from(
select distinct salary
from tbl_salary
)where t.salary<=salary
);

它是如何工作的?

还有其他简单的方法来获得结果吗?

最佳答案

如果是基本查询,则只需使用 LIMIT:

-- get the 4th highest salary
SELECT salary FROM tbl_salary
ORDER BY salary DESC
LIMIT 3,1

关于mysql - 如何找到列的第 n 个最高值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2324108/

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