mysql替换特殊字符

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

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

posted @ 2017-05-27 13:19  洋葱土豆随心匠  阅读(2655)  评论(0编辑  收藏  举报