SELECT PRODUCTION.Productname, PRODUCTION.Item_code, Sum(PRODUCTION.Qty) AS TotalOfQty
FROM PRODUCTION
GROUP BY PRODUCTION.Productname, PRODUCTION.Item_code
this will simply retrieve productname,item_code and total of qty
and what about the detail of total quantity suppose there is a...