1
select ifNull((select **distinct**(salary) from Employee order by salary desc limit 1,1),null) as SecondHighestSalary;
```sql
编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary) 。
+----+--------+
| Id | Salary |
+----+--------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
+----+--------+
例如上述 Employee 表,SQL查询应该返回 200 作为第二高的薪水。如果不存在第二高的薪水,那么查询应返回 null。
+---------------------+
| SecondHighestSalary |
+---------------------+
| 200 |
+---------------------+
来源:力扣(LeetCode)
**考点**
*1.limit 4,1 :从第4行开始,取后面的1行数据*
*2.ifnull()函数:ifnull(,null)*
*3.select ifnull(,null) as 某个字段*
**4.distinct**:**考虑如果编号不一样,但是salary字段一样的情况。**
## 2
```sql
CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
set n= n-1;
RETURN (
select ifnull((select distinct(salary) from Employee order by salary desc limit n,1),null)
);
END
编写一个 SQL 查询,获取 Employee 表中第 n 高的薪水(Salary)。
±—±-------+
| Id | Salary |
±—±-------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
±—±-------+
例如上述 Employee 表,n = 2 时,应返回第二高的薪水 200。如果不存在第 n 高的薪水,那么查询应返回 null。
±-----------------------+
| getNthHighestSalary(2) |
±-----------------------+
| 200 |
±-----------------------+
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/nth-highest-salary
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
注意
上面的set n = n-1;不能省略,直接在代码中写n-1 会报错。