Skip to content

1069. Product Sales Analysis II 👎

1
2
3
SELECT product_id, SUM(quantity) AS total_quantity
FROM Sales
GROUP BY 1;