我需要在单个列中为每个数字添加0.25,我不知道该怎么做。 这是我需要在p_rentfee列中的所有内容添加0.25的表,只需一个语句。
p_code p_descript p_rentfee p_datlatefee p_rentdays
1 Standard 2 1 5
2 New Release 3.5 3 3
3 Discount 1.5 1 5
4 Weekly Specia l 1 7
答案 0 :(得分:2)
使用普通的update
查询。
UPDATE `table` SET `p_rentfee` = (`p_rentfee` + 0.25)