mysql怎么把编号以3开头的产品单价下调百分之5
1个回答
2017-02-16
展开全部
update 表名 set 价格=价格*0.95 where 编号 like '3%'
涉及到保留位数 可以看下round
例如保留一位小数四舍五入
update 表明 set 价格=round(价格*0.95,1) where 编号 like '3%'
涉及到保留位数 可以看下round
例如保留一位小数四舍五入
update 表明 set 价格=round(价格*0.95,1) where 编号 like '3%'
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |