MySQLのreplace関数を使用して文字列を一括置換する

例1 MySQLコード:

update article set content = replace (content,’大井町’,’大森’) where id <1000

例2 イメージパスの文字列を置換
update 'upload_image’ set 'img_path’=replace('img_path’,’upload’,’uploads’) where id in(211,212,213,214);

MySQL

Posted by arkgame