ClickHouse/docs/en/sql-reference/table-functions/index.md
Dan Roscigno 57f451ad2d
Remove table from intro page
The table was not kept up to date, removing as the list of table functions is in the nav.  In the future the list will be auto generated below the intro material.

Closes #46944
2023-02-28 09:47:32 -05:00

856 B
Raw Blame History

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.

  • CREATE TABLE AS table_function() query.

It's one of the methods of creating a table.

:::warning You cant use table functions if the allow_ddl setting is disabled. :::