首页 > 其他 > 详细

LeetCode176——第二高的薪水

时间:2019-06-19 12:42:38      阅读:117      评论:0      收藏:0      [点我收藏+]

题目描述

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

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

例如上述 Employee 表,SQL查询应该返回 200 作为第二高的薪水。如果不存在第二高的薪水,那么查询应返回 null

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

思路

  1. 排序,取出排名第二的值
select Salary from Employee
  order by Salary desc
  limit 1, 1;
  1. group by 过滤掉相同薪水
select Salary from Employee
  group by Salary
  order by Salary desc
  limit 1, 1;
  1. 当不存在第二高的薪水时,会返回空而不是 null,做个是否为 null 的判断
select
  ifnull(
    (select Salary from Employee group by Salary order by Salary desc limit 1, 1),
    null
  ) as SecondHighestSalary;

可以简写为

select 
  (select Salary from Employee group by Salary order by Salary desc limit 1, 1)
  as SecondHighestSalary;

LeetCode176——第二高的薪水

原文:https://www.cnblogs.com/chaohangz/p/11050405.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!