时间:2021-07-01 10:21:17 帮助过:17人阅读
分别举例如下:
添加前缀:
添加后缀:
update `ecs_goods` set goods_name=concat(goods_name,‘新中式‘) where cat_id =4;
去掉首字母
update `ecs_goods`set goods_name=right(goods_name,length(goods_name)-1) where cat_id =4; 替换 update 表名 set 字段名=REPLACE (字段名,‘原来的值‘,‘要修改的值‘)Mysql 字段字符串修改
标签:upper class update title 替换 set 修改 code deb