Skip to content

NEW_LINE

Set the row separator for raw output mode.

Keywords

new_line, raw_new_line

Syntax

new_line <string>

Supports escape sequences: \n (newline), \r\n (Windows newline), \\ (backslash)

Examples

Unix Line Endings

sql
comment on function export_unix() is
'HTTP GET
raw
separator ,
new_line \n';

Windows Line Endings

sql
comment on function export_windows() is
'HTTP GET
raw
separator ,
new_line \r\n';

Custom Row Separator

sql
comment on function export_custom() is
'HTTP GET
raw
new_line |||';

Released under the MIT License.