Top Selling Products Query

Created on 5/29/2025, 3:33:41 PM

SELECT product_name, SUM(quantity) AS total_sold
FROM sales
GROUP BY product_name
ORDER BY total_sold DESC
LIMIT 10;