SQL - Advanced Window Functions
Find the issue in this query:
SELECT id, NTH_VALUE(salary, 3) OVER (ORDER BY salary DESC ROWS BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING) AS third_salary FROM Employees;
