SEPARATOR
Set the column separator for raw output mode.
Keywords
separator, raw_separator
Syntax
separator <string>Supports escape sequences: \t (tab), \n (newline), \\ (backslash)
Examples
Comma Separator (CSV)
sql
comment on function export_csv() is
'HTTP GET
raw
separator ,';Tab Separator (TSV)
sql
comment on function export_tsv() is
'HTTP GET
raw
separator \t';Pipe Separator
sql
comment on function export_pipe() is
'HTTP GET
raw
separator |';Custom Separator
sql
comment on function export_custom() is
'HTTP GET
raw
separator ::';Related
- Comment Annotations Guide - How annotations work
- Configuration Guide - How configuration works
Related Annotations
- RAW - Enable raw output mode
- NEW_LINE - Set row delimiter
- COLUMN_NAMES - Include header row