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 |||';Related
- Comment Annotations Guide - How annotations work
- Configuration Guide - How configuration works
Related Annotations
- RAW - Enable raw output mode
- SEPARATOR - Set column delimiter
- COLUMN_NAMES - Include header row