首页 > 其他 > 详细

176. Second Highest Salary

时间:2020-02-11 19:11:11      阅读:64      评论:0      收藏:0      [点我收藏+]

Write a SQL query to get the second highest salary from the Employee table.

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

For example, given the above Employee table, the query should return 200 as the second highest salary. If there is no second highest salary, then the query should return null.

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

要注意两个可能出现的情况,第一个当表格里的数据只有一个的时候,此时要返回null, 第二种情况是表格中salary都是同一个值,按照题目就不存在第二个最大值,也返回null.
1 SELECT 
2     (SELECT  DISTINCT Salary  FROM Employee
3     ORDER BY Salary Desc
4     LIMIT 1, 1) AS SecondHighestSalary;
SELECT 
    IFNULL((SELECT  DISTINCT Salary  FROM Employee
    ORDER BY Salary Desc
    LIMIT 1, 1), NULL) AS SecondHighestSalary;

 

176. Second Highest Salary

原文:https://www.cnblogs.com/hyxsolitude/p/12296086.html

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