We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e6cae commit 62fae1cCopy full SHA for 62fae1c
solution/0100-0199/0176.Second Highest Salary/Solution.sql
@@ -0,0 +1,2 @@
1
+select (select distinct Salary from Employee order by Salary desc limit 1 offset 1) as
2
+SecondHighestSalary;
0 commit comments