Documentation Index
Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Using INTO OUTFILE Clause
Add an INTO OUTFILE clause to your query. For example:nyc_taxi will be exported to the nyc_taxi.parquet using the Parquet format:
Using the File table engine
Another option is to use the File table engine, where ClickHouse uses the file to store the data. You can perform queries and inserts directly on the file. For example:data folder of your ClickHouse server - specifically in /data/default/my_table in a file named data.Parquet.
Using the
File table engine is incredibly handy for creating and querying files on your file system, but keep in mind that File tables are not MergeTree tables, so you don’t get all the benefits that come with MergeTree. Use File for convenience when exporting data out of ClickHouse in convenient formats.