将 tableA 中的 userID 列中的字符串 'AAA123BBB'批量替换为'a123b' 查找 SELECT REPLACE(userID ,'AAA123BBB','a123b')from tableA 更行 update tableA set userID =REPLACE(userID,'AAA123BBB','a123b')