SQL - Views
Given the view definition:
Which of the following statements is true when trying to update
CREATE VIEW dept_salary AS SELECT department_id, AVG(salary) AS avg_salary FROM employees GROUP BY department_id;
Which of the following statements is true when trying to update
avg_salary through this view?