Leetcode No.177 第N高的薪水
Posted AI算法攻城狮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode No.177 第N高的薪水相关的知识,希望对你有一定的参考价值。
一、题目描述
编写一个 SQL 查询,获取 Employee 表中第 n 高的薪水(Salary)。
+----+--------+
| Id | Salary |
+----+--------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
+----+--------+
例如上述 Employee 表,n = 2 时,应返回第二高的薪水 200。如果不存在第 n 高的薪水,那么查询应返回 null。
+------------------------+
| getNthHighestSalary(2) |
+------------------------+
| 200 |
+------------------------+
二、解题思路
使用DENSE_RANK连续排名函数
SQL四大排名函数(ROW_NUMBER、RANK、DENSE_RANK、NTILE)
https://xingqijiang.blog.csdn.net/article/details/120110950
三、代码
CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
RETURN (
# Write your mysql query statement below.
select distinct(salary)
from(
select salary,dense_rank()over(order by Salary desc) as rn
from Employee
)a
where a.rn=N
);
END
以上是关于Leetcode No.177 第N高的薪水的主要内容,如果未能解决你的问题,请参考以下文章
⭐️ LeetCode解题系列 ⭐️ 177. 第N高的薪水(Oracle dense_rank函数)
⭐️ LeetCode解题系列 ⭐️ 177. 第N高的薪水(Oracle dense_rank函数)