如果我们要将所有包含有xyz的对象中的xyz都变成abc的话呢,可以通过replace配合update
实现。如下:
update `table_name` set filed_name = REPLACE(filed_name,"xyz","abc");
转载自:https://www.cnblogs.com/bide/p/5981540.html
2023-12-12 17:18:22
如果我们要将所有包含有xyz的对象中的xyz都变成abc的话呢,可以通过replace配合update
实现。如下:
update `table_name` set filed_name = REPLACE(filed_name,"xyz","abc");
转载自:https://www.cnblogs.com/bide/p/5981540.html