PostgreSQL - Aggregate Functions and GROUP BY
Consider the query:
What does the output include?
SELECT region, product, SUM(sales) FROM sales_data GROUP BY GROUPING SETS ((region), (product), (region, product));
What does the output include?
