UPDATE 表名 SET 字段名 = replace(字段名,‘原来值’,‘修改值’);
例:
UPDATE pd_purchase SET type_status =replace(type_status,'1','0');
;