SELECT ProductID, SUM(Quantity) AS orderAnzahl FROM OrderDetails GROUP BY ProductID ORDER BY orderAnzahl ASC;