mysql替换特殊字符

有些特殊字符,比如倒三角的%1F,可以按照如下方式替换,主要是char和replace函数的使用

update table1 set col1 = replace(col1, char(31), '')
where col1 > 0;

原文地址:https://www.cnblogs.com/yangcclg/p/6912461.html