问题:显示的文本没有换行符或chr(10);
假设测试
列名(文本)
hello world hello world hello world hello world.
hello world.
我尝试过的sql
select REPLACE(REPLACE( text, CHR(10) ), CHR(13) )
from dual
但是它仍然在单行中提供输出。
hello world hello world hello world hello world.hello world.
最欢迎任何解决方案。
有效的解决方案
select REPLACE(REPLACE(textn,chr(10) , '<br>'),chr(13),'')
INTO v_text
from dual;