标签: sql
例如
SELECT product_c, price, price 'New Price'
我想将价格提高20%
答案 0 :(得分:2)
SELECT product_c, price, (price* 1.20) as new_price FROM Table;