351数据库查询,第二高的薪水

Posted huoyingfans

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了351数据库查询,第二高的薪水相关的知识,希望对你有一定的参考价值。

力扣

编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary) 。

+----+--------+
| Id | Salary |
+----+--------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
+----+--------+
例如上述 Employee 表,SQL查询应该返回 200 作为第二高的薪水。如果不存在第二高的薪水,那么查询应返回 null。

+---------------------+
| SecondHighestSalary |
+---------------------+
| 200 |
+---------------------+

来源:力扣(LeetCode)
链接:力扣
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

# Write your mysql query statement below

select Salary SecondHighestSalary

from Employee

where Salary<(

select max(Salary) from Employee

order by Salary desc limit 0,1;

问题

输入:

"headers":"Employee":["id","salary"],"rows":"Employee":[[1,100]]

输出:

"headers": ["SecondHighestSalary"], "values": []

预期结果:

"headers":["SecondHighestSalary"],"values":[[null]]

主要难点在这个 null

# Write your MySQL query statement below

select IFNULL(Salary,null) SecondHighestSalary

from Employee

where Salary<(

select max(Salary) from Employee

) order by Salary desc limit 0,1;

最简单好理解的

select max(Salary) SecondHighestSalary

from employee

where

salary<(select max(salary) from employee)

以上是关于351数据库查询,第二高的薪水的主要内容,如果未能解决你的问题,请参考以下文章

176. 第二高的薪水

LeetCode - 176. 第二高的薪水

LeetCode176——第二高的薪水

LeetCode--176--第二高的薪水

LeetCode:176.第二高的薪水

leecode的sql练习之第二高的薪水