HTMLify
Q176_Second_Highest_Salary.sql
Views: 472 | Author: djdj
1 2 3 | select (select distinct salary as SecondHighestSalary from Employee order by salary desc limit 1,1) as SecondHighestSalary; |
1 2 3 | select (select distinct salary as SecondHighestSalary from Employee order by salary desc limit 1,1) as SecondHighestSalary; |