Write a SQL query to get the second highest salary from the Employee table.
| Id | Salary | | 1 | 100 | | 2 | 200 | | 3 | 300 | <
Query:
CREATE TABLE a ([Id] int, [Salary] int) ; INSERT INTO a ([Id], [Salary]) VALUES (1, 100), (2, 200), (3, 300) ; GO SELECT Salary as SecondHighestSalary FROM a ORDER BY Salary OFFSET 1 ROWS FETCH NEXT 1 ROWS ONLY
| SecondHighestSalary | | ------------------: | | 200 |