SELECT PL.productNum, P.description, SUM(PL.quantity)
FROM PRODUCT AS P, PROD_LOCATION AS PL
WHERE P.productNum = PL.productNum
GROUP BY PL.productNum, P.description;
The easy one, this is because when you use a group bby you must always list all the fields that are using aggregate...