SQL - Window Functions Fundamentals
Identify the error in this SQL query:
SELECT employee_id, department, SUM(salary) OVER PARTITION BY department FROM employees;
