mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
1.1 KiB
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.