Write a SQL query to find the second highest salary from an employees table.
Constraints
Example
>>> second_highest_salary([(1, 100), (2, 200), (3, 300)]) 200 >>> second_highest_salary([(1, 100), (2, 100)]) None >>> second_highest_salary([]) None
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints