码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode--176--第二高的薪水

时间:2018-09-15 12:20:18      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:leetcode   sts   rom   employee   nbsp   etc   max   存在   sel   

问题描述:

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

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

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

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

sql:

select max(Salary) as SecondHighestSalary from Employee where
Salary < (select max(Salary) from Employee )

2018-09-15 11:20:44

LeetCode--176--第二高的薪水

标签:leetcode   sts   rom   employee   nbsp   etc   max   存在   sel   

原文地址:https://www.cnblogs.com/NPC-assange/p/9650374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!