最佳答案
如何在 PostgreSQL
中使用 newline character
?
这是我实验中的一个错误脚本:
select 'test line 1'||'\n'||'test line 2';
我想 sql editor
显示这个结果从我的脚本以上:
test line 1
test line 2
但不幸的是,当我在 sql 编辑器中运行脚本时,我只得到了这个结果:
test line 1 test line 2