SQL - Views
Given the table
What will the query
Sales with columns product, region, and amount, and the view:CREATE VIEW RegionalSales AS SELECT region, SUM(amount) AS total FROM Sales GROUP BY region;What will the query
SELECT * FROM RegionalSales WHERE total > 1000; return?