mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
981 B
981 B
slug | sidebar_position | sidebar_label |
---|---|---|
/en/sql-reference/functions/files | 75 | Files |
file
Reads a file as string and loads the data into the specified column. The file content is not interpreted.
Also see table function file.
Syntax
file(path[, default])
Arguments
path
— The path of the file relative to user_files_path. Supports wildcards*
,?
,{abc,def}
and{N..M}
whereN
,M
are numbers and'abc', 'def'
are strings.default
— The value returned if the file does not exist or cannot be accessed. Supported data types: String and NULL.
Example
Inserting data from files a.txt and b.txt into a table as strings:
INSERT INTO table SELECT file('a.txt'), file('b.txt');