LeetCode 0176 - Second Highest Salary 2018-06-04 LeetCode Contents Second Highest SalaryDesicriptionSolution Second Highest Salary DesicriptionWrite a SQL query to get the second highest salary from the Employee table. 1234567+----+--------+| Id | Salary |+----+--------+| 1 | 100 || 2 | 200 || 3 | 300 |+----+--------+ For example, given the above Employee table, the query should return 200 as the second highest salary. If there is no second highest salary, then the query should return null. 12345+---------------------+| SecondHighestSalary |+---------------------+| 200 |+---------------------+ Solution12345# Write your MySQL query statement belowselect MAX(Salary)as SecondHighestSalaryfrom Employeewhere Salary < (select MAX(Salary) from Employee)