2
0
Files
ausbildungschule/Zweites Jahr/aufgaben/saveLibaryDataInXml/getRentCountAbove10.sql
2025-12-11 12:30:05 +01:00

4 lines
109 B
SQL

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