> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> サーバーでサポートされているテーブルエンジンと、それぞれがサポートする機能の説明を含むシステムテーブル。

# system.table_engines

<div id="description">
  ## 説明
</div>

サーバーでサポートされているテーブルエンジンと、その機能サポート情報について説明します。

このテーブルには、次のカラムが含まれています (カラムの型は括弧内に示されています) :

* `name` ([String](/ja/reference/data-types/index)) — テーブルエンジンの名前。
* `supports_settings` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンが SETTINGS 句をサポートしているかどうかを示すフラグ。
* `supports_skipping_indices` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンがスキッピング索引をサポートしているかどうかを示すフラグ。
* `supports_projections` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンがプロジェクションをサポートしているかどうかを示すフラグ。
* `supports_sort_order` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンが PARTITION\_BY、PRIMARY\_KEY、ORDER\_BY、SAMPLE\_BY の各句をサポートしているかどうかを示すフラグ。
* `supports_ttl` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンが有効期限 (TTL) をサポートしているかどうかを示すフラグ。
* `supports_replication` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンがデータのレプリケーションをサポートしているかどうかを示すフラグ。
* `supports_deduplication` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンがデータの重複排除をサポートしているかどうかを示すフラグ。
* `supports_parallel_insert` ([UInt8](/ja/reference/data-types/index)) — テーブルエンジンが並列 insert をサポートしているかどうかを示すフラグ (`max&#95;insert&#95;threads` 設定を参照) 。
* `description` ([String](/ja/reference/data-types/index)) — テーブルエンジンの説明。専用のドキュメントページがあるエンジンでは、そのページの Markdown 本文全体が含まれます。それ以外のエンジンでは、簡潔な要約が含まれます。
* `syntax` ([String](/ja/reference/data-types/index)) — テーブル作成時にそのテーブルエンジンをどのように使用するか。ほとんどのエンジンでは、これは CREATE TABLE クエリの ENGINE 句ですが、一部のエンジン (各種 VIEW や Loop エンジンなど) では、CREATE VIEW やテーブル関数からの SELECT など、別の形式で使用されます。
* `examples` ([String](/ja/reference/data-types/index)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types/index)) — そのテーブルエンジンが最初に導入された ClickHouse のバージョン。形式は major.minor です。
* `related` ([Array(String)](/ja/reference/data-types/index)) — 関連するテーブルエンジンの名前。

<div id="example">
  ## 例
</div>

```sql title="Query" theme={null}
SELECT
    name,
    supports_settings,
    supports_skipping_indices,
    supports_sort_order,
    supports_ttl,
    supports_replication,
    supports_deduplication,
    supports_parallel_insert
FROM system.table_engines
WHERE name IN ('Kafka', 'MergeTree', 'ReplicatedCollapsingMergeTree')
```

```text title="Response" theme={null}
┌─name──────────────────────────┬─supports_settings─┬─supports_skipping_indices─┬─supports_sort_order─┬─supports_ttl─┬─supports_replication─┬─supports_deduplication─┬─supports_parallel_insert─┐
│ MergeTree                     │                 1 │                         1 │                   1 │            1 │                    0 │                      0 │                        1 │
│ Kafka                         │                 1 │                         0 │                   0 │            0 │                    0 │                      0 │                        0 │
│ ReplicatedCollapsingMergeTree │                 1 │                         1 │                   1 │            1 │                    1 │                      1 │                        1 │
└───────────────────────────────┴───────────────────┴───────────────────────────┴─────────────────────┴──────────────┴──────────────────────┴────────────────────────┴──────────────────────────┘
```

<div id="see-also">
  ## 関連項目
</div>

* MergeTree family [クエリの句](/ja/reference/engines/table-engines/mergetree-family/mergetree#mergetree-query-clauses)
* Kafka [設定](/ja/reference/engines/table-engines/integrations/kafka#creating-a-table)
* Join [設定](/ja/reference/engines/table-engines/special/join#join-limitations-and-settings)
