-- returns new column named offer_price which is -- 20 subtracted to the amount field SELECT item, amount, amount-20 AS offer_price FROM Orders;