首页 > 技术文章 > 记录oracle 换行符

liubinurl 原文

查询换行符

select * from fky where aa like '%wor
ld%';
select * from fky where aa like '%wor%ld%';
select * from fky where aa like '%wor'||chr(10)||'ld%';
select * from fky where aa like '%wor'||chr(13)||chr(10)||'ld%';

推荐阅读