ClickHouse/docs/en/sql-reference/table-functions/index.md
2021-11-22 19:17:00 +00:00

3.8 KiB
Raw Blame History

toc_folder_title toc_priority toc_title
Table Functions 34 Introduction

Table Functions

Table functions are methods for constructing tables.

You can use table functions in:

!!! warning "Warning" You cant 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.

Original article