SQL Server實現 LeetCode 176 第二高的薪水

176. 第二高的薪水

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

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

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

+---------------------+
| SecondHighestSalary |
+---------------------+
| 200                 |
+---------------------+
/* Write your T-SQL query statement below */

select max(Salary) SecondHighestSalary
from employee
where
salary<(select max(salary) from employee)
相關文章
相關標籤/搜索