示例语句
UPDATE your_table_name
SET your_column_name = REPLACE(your_column_name, 'old_string', 'new_string')
WHERE your_column_name LIKE '%old_string%';
原因:
项目用了一个服务上传地址原来是http开头,数据库存的地址也是http,后来加了ssl之后
http改成https , 用代码处理过之后有些https变成httpsss 或者httpss
通过以上的示例语句,可以在数据库中批量修改