ClickHouse/docs/ja/sql-reference/table-functions/index.md
2020-10-13 20:23:29 +03:00

3.0 KiB

machine_translated machine_translated_rev toc_folder_title toc_priority toc_title
true 72537a2d52 テーブル関数 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-エンジンテーブル。

元の記事