SQL - GROUP BY and HAVING
Given the table
orders with columns customer_id, product_id, and quantity, what will this query return?SELECT customer_id, product_id, SUM(quantity) FROM orders GROUP BY customer_id, product_id;