ClickHouse/docs/ru/table_functions/file.md
Ivan Blinkov e312229344 Few documentation infrastructure improvements (#2613)
* Remove Berlin meetup link

* Do not block browser while single page docs content loads

* Restore sidebar scroll tracking feature

* Temporary hide footer in single page docs mode so it does not jump around

* Swap sidebars in single page docs mode

* fix lost anchor in link

* Explicitly fail if there are errors during docs build
2018-07-09 15:00:38 +03:00

869 B
Raw Blame History

file

file(path, format, structure) - возвращает таблицу со столбцами, указанными в structure, созданную из файла path типа format.

path - относительный путь до файла от user_files_path.

format - формат файла.

structure - структура таблицы в форме 'UserID UInt64, URL String'. Определяет имена и типы столбцов.

Пример

-- получение первых 10 строк таблицы, состоящей из трёх колонок типа UInt32 из CSV файла
SELECT * FROM file('test.csv', 'CSV', 'column1 UInt32, column2 UInt32, column3 UInt32') LIMIT 10