176. 第二高的薪水

編寫一個 SQL 查詢,獲取 Employee 表中第二高的薪水(Salary) 。spa

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

例如上述 Employee 表,SQL查詢應該返回 200 做爲第二高的薪水。若是不存在第二高的薪水,那麼查詢應返回 nullcode

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

select (
    select distinct Salary from Employee order by Salary desc limit 1, 1
)as SecondHighestSalary
相關文章
相關標籤/搜索