⭐️ LeetCode解题系列 ⭐️ 177. 第N高的薪水(Oracle dense_rank函数)

Posted Lucifer三思而后行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了⭐️ LeetCode解题系列 ⭐️ 177. 第N高的薪水(Oracle dense_rank函数)相关的知识,希望对你有一定的参考价值。

❤️ 原题 ❤️

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

+----+--------+
| Id | Salary |
+----+--------+
| 1  | 100    |
| 2  | 200    |
| 3  | 300    |
+----+--------+

例如上述 Employee 表,n = 2 时,应返回第二高的薪水 200。如果不存在第 n 高的薪水,那么查询应返回 null

+------------------------+
| getNthHighestSalary(2) |
+------------------------+
| 200                    |
+------------------------+

⭐️ 解题思路 ⭐️

前面有一篇文章讲过 dense_rank 排名函数 ⭐️ LeetCode解题系列 ⭐️ 178. 分数排名(Oracle dense_rank函数),本题依然是排名函数的解法。

① 使用 dense_rank 函数进行排名并去重:

select distinct salary,dense_rank() over (order by salary desc) rank 
from employee;


② 将查询结果作为表,传入 N 值再次进行查询,并且使用 nvl 函数返回 null,返回结果:

select nvl(salary,null) 
    from (
        select distinct salary,dense_rank() over (order by salary desc) rank 
        from employee
    )
    where rank = 2;


③ 完整代码如下:

CREATE FUNCTION getNthHighestSalary(N IN NUMBER) RETURN NUMBER IS
result NUMBER;
BEGIN
    /* Write your PL/SQL query statement below */
    select nvl(salary,null) 
    into result 
    from (
        select distinct salary,dense_rank() over (order by salary desc) rank 
        from employee
    )
    where rank = N;
    
    RETURN result;
END;

去 LeetCode 执行一下看看结果吧:

❄️ 写在最后 ❄️

本题的解题说难不难,只要知道这个函数,一下子就能看出解法。


本次分享到此结束啦~

如果觉得文章对你有帮助,点赞、收藏、关注、评论,一键四连支持,你的支持就是我创作最大的动力。

以上是关于⭐️ LeetCode解题系列 ⭐️ 177. 第N高的薪水(Oracle dense_rank函数)的主要内容,如果未能解决你的问题,请参考以下文章

⭐️ LeetCode解题系列 ⭐️ 175. 组合两个表(Oracle 简单的左右连接)

⭐️ LeetCode解题系列 ⭐️ 175. 组合两个表(Oracle 简单的左右连接)

⭐️ LeetCode解题系列 ⭐️ 192. 统计词频(Shell)

⭐️ LeetCode解题系列 ⭐️ 192. 统计词频(Shell)

⭐️ LeetCode解题系列 ⭐️ 194. 转置文件(Shell)

⭐️ LeetCode解题系列 ⭐️ 194. 转置文件(Shell)