查询数据库中存在的回车换行符

查询数据库中存在的回车换行符

查询语句

select id, code, name from user where name like '%'||chr(10)||'%';
select id, code, name from user where name like '%'||chr(13)||'%';

注:chr(10)换行,chr(13)回车

    原文作者:xiaokewei5
    原文地址: https://blog.csdn.net/xiaokewei5/article/details/115353081
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞