176. Second Highest Salary

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

https://github.com/qixing810/leetcode_database
原文地址:https://www.cnblogs.com/yuesi/p/10134928.html