-使用示例 update TABLE_NAME set 更新字段=replace(更新字段,'想要被替换的字符串','想要替换成的字符串')
update T_table set DeptName = REPLACE(DeptName,'天津分公司,','') where DeptName like '天津%';
-使用示例 update TABLE_NAME set 更新字段=replace(更新字段,'想要被替换的字符串','想要替换成的字符串')
update T_table set DeptName = REPLACE(DeptName,'天津分公司,','') where DeptName like '天津%';