mysql替换字符串

今天要替换数据库里的所有字符串

例如把http改成https

UPDATE table_name set colum_name=REPLACE(colum_name,'http','https')

原文地址:https://www.cnblogs.com/anxiaoyu/p/6859813.html