如何编写查询以显示价格,价格折扣,然后为新价格创建一列

时间:2016-12-07 19:29:10

标签: sql

如何编写查询以显示价格,价格折扣,然后为新价格创建一列?我正在使用oracle sql。

1 个答案:

答案 0 :(得分:1)

select price, price_discount, (price - price_discount) as new_price from table

如果要使用新价格创建永久列,则可以使用alter table创建新列

ALTER TABLE table ADD new_price decimal(10, 2);

然后

update table set new_price = price - price_discount