4 lines
109 B
SQL
4 lines
109 B
SQL
SELECT ProductID, SUM(Quantity) AS orderAnzahl
|
|
FROM OrderDetails
|
|
GROUP BY ProductID
|
|
ORDER BY orderAnzahl ASC; |