Which SQL query correctly uses the GROUP BY clause to calculate the total sales for each unique product category in the 'products' table?
SELECT product_category, SUM(sales) FROM products GROUP BY product_category
SELECT SUM(sales) FROM products
Baroque art features strong contrasts, while Rococo art prefers more subtle transitions
Baroque art is generally larger in scale than Rococo art

Database Management Systems Exercises are loading ...