フィールドのテキスト コンテンツをエクスポートしようとすると、そのコンテンツにキャリッジ リターン文字が含まれている場合、その文字は \N 文字列のように出力されます。
例えば:
create table foo ( txt text );
insert into foo ( txt ) values ( 'first line
second line
...
and other lines');
copy foo ( txt ) to '/tmp/foo.txt';
次の(a)を返したい:
first line
second line
...
and other lines
しかし、出力は(b)です:
first line\Nsecond line\N...\Nand other lines
(a)出力を取得する方法を知っている人はいますか?