176. Second Highest Salary

来源:互联网 发布:js定时器重复执行 编辑:程序博客网 时间:2024/05/16 09:46

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 |
+———————+

# Write your MySQL query statement belowSelect MAX(Salary) as SecondHighestSalary from Employeewhere Salary < (Select MAX(Salary) from Employee)
原创粉丝点击