1. 程式人生 > >176.第二高的薪水

176.第二高的薪水

解析

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

最大查詢

select max(column) from table

第二大在 最大的基礎上新增 where條件

select max(column) from table

where column <(select max(column) from table)