摘要: 添加前缀update `ecs_goods` set goods_name=concat('新中式',goods_name) where cat_id =4;添加后缀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;其中ecs_goods为表名,cat_id为分类字段名,goods_na 阅读全文
posted @ 2012-02-24 14:02 lonelystarxing 阅读(8377) 评论(0) 推荐(1) 编辑