SQL - Views
Consider the view:
Why is this view not updatable?
CREATE VIEW v_revenue AS SELECT product_id, SUM(sales_amount) AS total_sales FROM sales GROUP BY product_id;
Why is this view not updatable?
