Help wanted!

The following content of this documentation page has been machine-translated. But unlike other websites, it is not done on the fly. This translated text lives on GitHub repository alongside main ClickHouse codebase and waits for fellow native speakers to make it more human-readable. You can also use the original English version as a reference.

Help ClickHouse documentation by editing this page

表函数

表函数是构造表的方法。

您可以使用表函数:

  • FROM 《公约》条款 SELECT 查询。

    1. The method for creating a temporary table that is available only in the current query. The table is deleted when the query finishes.
  • 创建表为\ 查询。

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

警告

你不能使用表函数,如果 allow_ddl 设置被禁用。

功能产品描述
文件创建一个 文件-发动机表。
合并创建一个 合并-发动机表。
数字创建一个包含整数填充的单列的表。
远程允许您访问远程服务器,而无需创建 分布-发动机表。
url创建一个 Url-发动机表。
mysql创建一个 MySQL-发动机表。
jdbc创建一个 JDBC-发动机表。
odbc创建一个 ODBC-发动机表。
hdfs创建一个 HDFS-发动机表。

原始文章