mysql で文字列を一括変換 MySQL 2020.04.25 memberテーブルのprofileフィールド内の、”俺” を “自分” に変える場合。 update member SET profile=REPLACE(profile, '俺', '自分'); 1 update member SET profile=REPLACE(profile, '俺', '自分');