Well, another simple query that works for this problem:
SELECT IFNULL(
(select distinct salary
from Employee
order by salary desc
limit 1
offset 1)
, null
) as SecondHighestSalary
But practice with different approaches is great here