Lintz's method is fine if you are looking for a specific product, but not for multiple products. If that is what you want then one of these will probably do what you want:
If you want a total of the "Quantity" field per unique value in "Product_Name" then use this:
Code:
SELECT Product_Name, SUM (Quantity)
FROM 'Inventory'
GROUP BY Product_Name
If you just want to return the number of rows containing each Product_Name then use this:
Code:
SELECT Product_Name, count(Product_Name)
FROM 'Inventory'
GROUP BY Product_Name