我试图在Access中添加一个名为Reduced Price的新列,将ProductUnitPrice列减少10%

时间:2014-04-08 20:57:13

标签: sql ms-access

SELECT ProductID, ProductDescription, ProductUnitsOnHand, ProductUnitPrice
FROM tblProduct
ALTER tblProduct 
ADD COLUMN Reduced Price NUMBER DEFAULT 0

到目前为止,这是我能够弄清楚的。

1 个答案:

答案 0 :(得分:1)

您是要尝试将永久列添加到现有表中,还是只输出包含结果的其他列?我会猜测后者。如果我是对的,那就试试这个:

SELECT ProductID, ProductDescription, ProductUnitsOnHand,
       ProductUnitPrice, (ProductUnitPrice * .9) as [Reduced Price]
FROM tblProduct