我有两张表,一张是产品列表,一张是结账表。
我写了这个查询:
SELECT tblComponents.Name, tblComponents.Tax,
SUM(CONVERT(int,ProductCheckout.ItemQuantity)) as Quantity
FROM tblComponents
INNER JOIN ProductCheckout
ON tblComponents.ID=ProductCheckout.ItemID where tblComponents.Tax <> 0
Group BY tblComponents.Name, ProductCheckout.ItemQuantity, tblComponents.Tax;
我正在寻找订购物品的总数/数量。
目前它显示
OrderName 2.00 1
OrderName 2.00 2
我希望它显示:
OrderName 4 3
我正在寻找所有产品名称的列表,以及订购的税款和数量的总和。
我不确定这个查询有什么问题,但我需要指出正确的方向。