SELECT ProductID, ProductDescription, ProductUnitsOnHand, ProductUnitPrice
FROM tblProduct
ALTER tblProduct
ADD COLUMN Reduced Price NUMBER DEFAULT 0
到目前为止,这是我能够弄清楚的。
答案 0 :(得分:1)
您是要尝试将永久列添加到现有表中,还是只输出包含结果的其他列?我会猜测后者。如果我是对的,那就试试这个:
SELECT ProductID, ProductDescription, ProductUnitsOnHand,
ProductUnitPrice, (ProductUnitPrice * .9) as [Reduced Price]
FROM tblProduct