ClickHouse/docs/en/faq/integration/file-export.md
2020-07-21 23:28:23 +03:00

1.1 KiB

title toc_hidden toc_priority
How do I export data from ClickHouse to a file? true 10

How Do I Export Data from ClickHouse to a File?

Using INTO OUTFILE Clause

Add an INTO OUTFILE clause to your query.

For example:

SELECT * FROM table INTO OUTFILE 'file'

By default, ClickHouse uses the TabSeparated format for output data. To select the data format, use the FORMAT clause.

For example:

SELECT * FROM table INTO OUTFILE 'file' FORMAT CSV

Using a File-Engine Table

See File table engine.

Using Command-Line Redirection

$ clickhouse-client --query "SELECT * from table" --format FormatName > result.txt

See clickhouse-client.