mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
b453e2dde9
* Create file.md * Update file.md * Update file.md * Update settings.md * Update file.md * Update settings.md * Update file.md * Update file.md * Update settings.md * Update file.md * Update settings.md * Update file.md * Update settings.md * Update settings.md * Update file.md * Update file.md * Update file.md * Update file.md * Update file.md * Update file.md * Update settings.md * Update file.md * Update settings.md * Update settings.md * Update settings.md * Create file.md * Update mkdocs_ru.yml * Update mkdocs_en.yml * Update settings.md * Update settings.md * Update mkdocs_en.yml * Update mkdocs_ru.yml * Update mkdocs_en.yml * Update mkdocs_en.yml * Update file.md * Update file.md
662 B
662 B
file
file(path, format, structure)
- returns a table created from a path file with a format type, with columns specified in structure.
path - a relative path to a file from user_files_path.
format - file format.
structure - table structure in 'UserID UInt64, URL String' format. Determines column names and types.
Example
-- getting the first 10 lines of a table that contains 3 columns of UInt32 type from a CSV file
SELECT * FROM file('test.csv', 'CSV', 'column1 UInt32, column2 UInt32, column3 UInt32') LIMIT 10