这就是我想要实现的目标,除了Total列之外,我拥有一切。总列数是Number * Product Price的结果。我已经尝试了几个sum()查询,但没有一个以我想要的方式出现,并且发现很难在这个过程中创建这个新列。任何帮助将不胜感激,谢谢。
答案 0 :(得分:3)
您应该可以将其简单地附加到您的查询中,如下所示:
SELECT TransactionID,
CustomerID,
StoreID,
TransactionDate,
Number,
ProductName,
ProductPrice,
Number*ProductPrice AS Total
FROM dbo.table