SQL - GROUP BY and HAVING
Given the table
What is the result of:
sales with data:product | region -------|-------- A | East B | NULL A | NULL B | East NULL | West NULL | NULL
What is the result of:
SELECT region, COUNT(*) FROM sales GROUP BY region ORDER BY region;
