product_id NVARCHAR(50) FOREIGN KEY REFERENCES Products(product_id), user_id NVARCHAR(255) FOREIGN KEY REFERENCES Users(user_id), ...
Id is the primary key column for this table. Each row of this table contains information about the salary of an employee. Write an SQL query to report the nth highest salary from the Employee table.