SELECT product, SUM(quantity) AS "Total quantity"
FROM order_details
GROUP BY product;