给表中某个字段批量替换内容 发表于 2022-11-17 更新于 2023-02-27 分类于 数据库 , MySQL 使用 MySQL 提供的内置函数 replace 123update t_user set name = replace(name,'xx','yy') where ...