1*.需求
将表(Ws_FormMain)的字段(order_Number)内容为XSRK201706080001修改为WXSK201706080001
update 表名 set 字段 = replace(字段, '要修改的内容' , '修改后的内容');
UPDATE Ws_FormMain SET order_Number = REPLACE(order_Number, 'XSRK', 'WXSK') WHERE orderDefId = 513
2*.需要修改sqlserver数据库中某一字段的值,例如从“1234560001”至“1234560999”的字段supplier_id进行修改,要求修改后的supplier_id字段值为“654321****”。
可以使用replace()函数进行修改:update table set supplier_id=replace(supplier_id,'123456','654321') where supplier_id like '123456%';
replace()函数中,第一个参数表示的是需要进行操作的字段或值,第二个参数表示的需要被替换的字符串,第三个参数表示进行替换的字符串
MYSQL中批量替换某个字段的部分数据:
参考网址:https://blog.csdn.net/jiangnanqbey/article/details/81304834
https://www.cnblogs.com/hao-1234-1234/p/10717864.html
https://blog.csdn.net/qq_14997169/article/details/53241395
https://blog.csdn.net/john320/article/details/16887967