ClickHouse/docs/ja/sql_reference/table_functions/index.md
2020-04-04 12:15:31 +03:00

3.0 KiB

machine_translated machine_translated_rev toc_folder_title toc_priority toc_title
true d734a8e46d Table Functions 34 導入

テーブル関数

テーブル機能の方法を構築します。

テーブル関数は次の場所で使用できます:

  • FROM の句 SELECT クエリ。

    The method for creating a temporary table that is available only in the current query. The table is deleted when the query finishes.
    
  • テーブルを<table_function()>として作成 クエリ。

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

!!! warning "警告" テーブル関数を使用することはできません。 allow_ddl 設定は無効です。

機能 説明
ファイル を作成します。 ファイル-エンジンのテーブル。
マージ を作成します。 マージ-エンジンのテーブル。
数字 単一の列が整数で埋められたテーブルを作成します。
リモート へ自由にアクセスできるリモートサーバーを作成することなく 分散-エンジンのテーブル。
url を作成します。 Url-エンジンのテーブル。
mysql を作成します。 MySQL-エンジンのテーブル。
jdbc を作成します。 JDBC-エンジンのテーブル。
odbc を作成します。 ODBC-エンジンのテーブル。
hdfs を作成します。 HDFS-エンジンのテーブル。

元の記事