mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
3.7 KiB
3.7 KiB
slug | sidebar_label | sidebar_position |
---|---|---|
/en/sql-reference/table-functions/ | Table Functions | 34 |
Table Functions
Table functions are methods for constructing tables.
You can use table functions in:
-
FROM clause of the
SELECT
query.The method for creating a temporary table that is available only in the current query. The table is deleted when the query finishes.
It's one of the methods of creating a table.
- INSERT INTO TABLE FUNCTION query.
:::warning You can’t use table functions if the allow_ddl setting is disabled. :::
Function | Description |
---|---|
file | Creates a File-engine table. |
merge | Creates a Merge-engine table. |
numbers | Creates a table with a single column filled with integer numbers. |
remote | Allows you to access remote servers without creating a Distributed-engine table. |
url | Creates a Url-engine table. |
mysql | Creates a MySQL-engine table. |
postgresql | Creates a PostgreSQL-engine table. |
jdbc | Creates a JDBC-engine table. |
odbc | Creates a ODBC-engine table. |
hdfs | Creates a HDFS-engine table. |
s3 | Creates a S3-engine table. |
sqlite | Creates a sqlite-engine table. |