mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
846 B
846 B
slug | sidebar_label | sidebar_position |
---|---|---|
/en/sql-reference/table-functions/ | Table Functions | 1 |
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.
-
CREATE TABLE AS table_function() query.
It's one of the methods of creating a table.
-
INSERT INTO TABLE FUNCTION query.
:::note You can’t use table functions if the allow_ddl setting is disabled. :::