I have a question.
On the AdventureWorks2012 database, I have to write a query using the Purchasing.PurchaseOrderDetail table and list the total quanity purchased for each product during 2006 and label sum as TotatQtyPurchased. I also have to group by ProductID.
Here is my work
SELECT POD.ProductID SUM(*) TotalQtyPurchased
FROM Purchasing.PurchaseOrderDetail POD
WHERE Date = '2006' GROUP BY POD.ProductID
But I keep getting an error message:
Msg 102, Level 15, State 1, Line 4 Incorrect syntax near '*'.
What am I doing wrong? Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…