表更新语句结构

UPDATE 表名 SET 字段 = REPLACE(字段,原值,变值) WHERE 过滤条件

update titles_test set emp_no = replace(emp_no,10001,10005) where id = 5