SQL - Advanced Window Functions
Identify the error in this query:
SELECT employee_id, LAST_VALUE(salary) OVER (ORDER BY employee_id) AS last_sal FROM employees;
