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