萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> MySQL字段前綴、後綴、替換操作的例子

MySQL字段前綴、後綴、替換操作的例子

我們介紹到了添加前、後綴 ,字符串替換會使用到兩個函數,一個是concat另一個是replace函數了,下面我們就一起來看看吧。

添加前、後綴 concat,字符串替換 replace

添加前綴

UPDATE `table` SET field_name = concat("前綴", field_name);

添加後綴

UPDATE `table` SET field_name = concat(field_name, "後綴");

批量替換

UPDATE `table` SET field_name = REPLACE(intro, "before_replace", "after_replace");

為了讓各位更加清楚我們看幾個例子

添加前綴

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_name為產品字段名

copyright © 萬盛學電腦網 all rights reserved