力扣-第二高的薪水

Posted 空空star

tags:

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

大家好,我是空空star,本篇带大家了解一道中等的力扣sql练习题。

文章目录


前言


一、题目:176. 第二高的薪水

Employee 表:

+-------------+------+
| Column Name | Type |
+-------------+------+
| id          | int  |
| salary      | int  |
+-------------+------+
id 是这个表的主键。
表的每一行包含员工的工资信息。

编写一个 SQL 查询,获取并返回 Employee 表中第二高的薪水 。如果不存在第二高的薪水,查询应该返回 null 。

查询结果如下例所示。

示例1:

输入:
Employee 表:
+----+--------+
| id | salary |
+----+--------+
| 1  | 100    |
| 2  | 200    |
| 3  | 300    |
+----+--------+
输出:
+---------------------+
| SecondHighestSalary |
+---------------------+
| 200                 |
+---------------------+


示例 2:

输入:
Employee 表:
+----+--------+
| id | salary |
+----+--------+
| 1  | 100    |
+----+--------+
输出:
+---------------------+
| SecondHighestSalary |
+---------------------+
| null                |
+---------------------+


二、解题

1.正确示范①

提交SQL

select salary SecondHighestSalary from(
    select salary,row_number() over(order by salary desc ) col
    from(
        select 
        salary
        from Employee 
        union
        select null
    ) u
) u 
where col=2;

运行结果

2.正确示范②

提交SQL

select salary SecondHighestSalary from(
    select salary,rank() over(order by salary desc ) col
    from(
        select 
        salary
        from Employee 
        union
        select null
    ) u
) u 
where col=2;

运行结果

3.正确示范③

提交SQL

select salary SecondHighestSalary from(
    select salary,dense_rank() over(order by salary desc ) col
    from(
        select 
        salary
        from Employee 
        union
        select null
    ) u
) u 
where col=2;

运行结果

4.正确示范④

提交SQL

select ifnull(
(select distinct salary from Employee
order by salary desc limit 1 offset 1),
null) as SecondHighestSalary;

运行结果

5.其他


总结

正确示范①思路:
考虑到工资可能重复以及不存在第二高的薪水时查询应该返回 null ,
我们做如下处理:
select salary from Employee union select null
然后再采用row_number() over(order by salary desc ) col,限定col=2;
正确示范②思路:
考虑到工资可能重复以及不存在第二高的薪水时查询应该返回 null ,
我们做如下处理:
select salary from Employee union select null
然后再采用rank() over(order by salary desc ) col,限定col=2;
正确示范③思路:
考虑到工资可能重复以及不存在第二高的薪水时查询应该返回 null ,
我们做如下处理:
select salary from Employee union select null
然后再采用dense_rank() over(order by salary desc ) col,限定col=2;
正确示范④思路:
对工资通过distinct去重后,
通过 order by salary desc按工资降序,
通过limit 1 offset 1跳过1条数据,读取1条数据,
再通过ifnull(表达式,null)做空时返回null处理。
知识点:
row_number:顺序排序;
rank:并列排序,会跳过重复的序号,比如序号为1、1、3;
dense_rank:并列排序,不会跳过重复的序号,比如序号为1、1、2。
limit y 表示: 读取前y 条数据
limit x, y 表示: 跳过 x 条数据,读取 y 条数据
limit y offset x 表示: 跳过 x 条数据,读取 y 条数据

以上是关于力扣-第二高的薪水的主要内容,如果未能解决你的问题,请参考以下文章

力扣-第二高的薪水

LeetCode-SQL-第二高的薪水

LeetCode - 176. 第二高的薪水

LeetCode176——第二高的薪水

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

LeetCode 176. 第二高的薪水(MySQL版)