SQL,在同一行中乘以两列并创建一个" total"柱

时间:2017-04-07 13:47:48

标签: sql multiple-columns

enter image description here

这就是我想要实现的目标,除了Total列之外,我拥有一切。总列数是Number * Product Price的结果。我已经尝试了几个sum()查询,但没有一个以我想要的方式出现,并且发现很难在这个过程中创建这个新列。任何帮助将不胜感激,谢谢。

1 个答案:

答案 0 :(得分:3)

您应该可以将其简单地附加到您的查询中,如下所示:

SELECT TransactionID,
       CustomerID,
       StoreID,
       TransactionDate,
       Number,
       ProductName,
       ProductPrice,
       Number*ProductPrice AS Total
FROM dbo.table