SQL - Views
Given the view:
Which query will cause an error?
CREATE VIEW sales_summary AS SELECT region, SUM(amount) AS total_sales FROM sales GROUP BY region;
Which query will cause an error?
