Write a SQL query to get the second highest salary from the Employee table.
| Id | Salary | | 1 | 100 | | 2 | 200 | | 3 | 300 | <
Here is the easy way to do this
SELECT MAX(Salary) FROM table WHERE Salary NOT IN (SELECT MAX(Salary) FROM table);