有些特殊字符,比如倒三角的%1F,可以按照如下方式替换,主要是char和replace函数的使用
update table1 set col1 = replace(col1, char(31), '')where col1 > 0;