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

> 包含服务器支持的表引擎及其所支持功能说明的系统表。

# system.table_engines

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

包含 服务器 支持的表引擎说明及其功能支持信息。

此表包含以下列 (列类型显示在括号中) ：

* `name` ([String](/zh/reference/data-types)) — 表引擎的名称。
* `supports_settings` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持 SETTINGS 子句的标志。
* `supports_skipping_indices` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持跳过索引的标志。
* `supports_projections` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持投影的标志。
* `supports_sort_order` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持 PARTITION\_BY、PRIMARY\_KEY、ORDER\_BY 和 SAMPLE\_BY 子句的标志。
* `supports_ttl` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持 TTL 的标志。
* `supports_replication` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持数据复制的标志。
* `supports_deduplication` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持数据去重的标志。
* `supports_parallel_insert` ([UInt8](/zh/reference/data-types)) — 指示表引擎是否支持并行插入的标志 (参见 max\_insert\_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 家族 [查询子句](/zh/reference/engines/table-engines/mergetree-family/mergetree#mergetree-query-clauses)
* Kafka [设置](/zh/reference/engines/table-engines/integrations/kafka#creating-a-table)
* Join [设置](/zh/reference/engines/table-engines/special/join#join-limitations-and-settings)
