gpt4 book ai didi

mysql - 查找雇员表 MySQL 的最大和第二最大工资,不按数字计算

转载 作者:行者123 更新时间:2023-11-29 18:13:00 24 4
gpt4 key购买 nike

enter image description here

我想要此表中的第二个最高工资

mysql> select * from Employee;                                                                                                                                          
+------+---------+--------+
| id | name | salary |
+------+---------+--------+
| 1 | shubham | 200 |
| 2 | geeta | 300 |
| 3 | nir | 500 |
| 4 | pooja | 2000 |
| 5 | pranav | 5000 |
+------+---------+--------+

最佳答案

您可以运行此查询以获得第二高的薪水

SELECT * FROM Employee ORDER BY Salary DESC LIMIT 1 OFFSET 1

关于mysql - 查找雇员表 MySQL 的最大和第二最大工资,不按数字计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47247479/

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