linfo2172-databases/P3/queries/query2.sql

7 lines
202 B
MySQL
Raw Normal View History

2024-04-24 10:38:32 +02:00
-- Determine the total number of purchases for each product. List the number of the product, as well as the total number of purchases.
SELECT product, sum(qty) as cnt
FROM Purchases
GROUP BY product
;