> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.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)) — テーブルエンジン名。
* `supports_settings` ([UInt8](/ja/reference/data-types)) — テーブルエンジンが SETTINGS 句をサポートしているかどうかを示すフラグ。
* `supports_skipping_indices` ([UInt8](/ja/reference/data-types)) — テーブルエンジンがスキッピングインデックスをサポートしているかどうかを示すフラグ。
* `supports_projections` ([UInt8](/ja/reference/data-types)) — テーブルエンジンがプロジェクションをサポートしているかどうかを示すフラグ。
* `supports_sort_order` ([UInt8](/ja/reference/data-types)) — テーブルエンジンが PARTITION\_BY、PRIMARY\_KEY、ORDER\_BY、SAMPLE\_BY の各句をサポートしているかどうかを示すフラグ。
* `supports_ttl` ([UInt8](/ja/reference/data-types)) — テーブルエンジンが有効期限 (TTL) をサポートしているかどうかを示すフラグ。
* `supports_replication` ([UInt8](/ja/reference/data-types)) — テーブルエンジンがデータのレプリケーションをサポートしているかどうかを示すフラグ。
* `supports_deduplication` ([UInt8](/ja/reference/data-types)) — テーブルエンジンがデータの重複排除をサポートしているかどうかを示すフラグ。
* `supports_parallel_insert` ([UInt8](/ja/reference/data-types)) — テーブルエンジンが並列 insert をサポートしているかどうかを示すフラグ (`max&#95;insert&#95;threads` 設定を参照) 。

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

```sql title="Query" theme={null}
SELECT *
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)
