有时候我们需要批量修改某个指定的字符串字段,可以通过replace来实现相应功能,格式如下: UPDATE 表名 SET 字段名 = replace(字段名, '要替换的字符串', '替换为') WHERE 特定条件;