1069. Product Sales Analysis II ¶ SQL 1 2 3SELECT product_id, SUM(quantity) AS total_quantity FROM Sales GROUP BY 1;