mysql替换字符串中换行符及回车符

char(10)表示换行符
char(13)表示回车符

# 替换字符串中换行符
update test set address= replace(address,char(10),'');
# 替换字符串中回车符
update test set address= replace(address,char(13),'');
    原文作者:HoneyYHQ9988
    原文地址: https://blog.csdn.net/HoneyYHQ9988/article/details/122452820
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞