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

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

# system.table_engines

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

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

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

* `name` ([String](/zh/reference/data-types/index)) — 表引擎的名称。
* `supports_settings` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持 SETTINGS 子句的标志。
* `supports_skipping_indices` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持跳过索引的标志。
* `supports_projections` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持投影的标志。
* `supports_sort_order` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持 PARTITION\_BY、PRIMARY\_KEY、ORDER\_BY 和 SAMPLE\_BY 子句的标志。
* `supports_ttl` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持生存时间 (TTL) 的标志。
* `supports_replication` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持数据复制的标志。
* `supports_deduplication` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持数据去重的标志。
* `supports_parallel_insert` ([UInt8](/zh/reference/data-types/index)) — 指示表引擎是否支持并行插入的标志 (请参见 max\_insert\_threads 设置) 。
* `description` ([String](/zh/reference/data-types/index)) — 对表引擎功能的描述。对于有专门文档页面的引擎，这里包含该页面完整的 Markdown 正文；对于其余引擎，这里则提供简要概述。
* `syntax` ([String](/zh/reference/data-types/index)) — 创建表时表引擎的使用语法。对于大多数引擎，这就是 CREATE TABLE 查询中的 ENGINE 子句；但某些引擎 (例如各种 VIEW 或 Loop 引擎) 则通过其他形式使用，例如 CREATE VIEW 或从表函数执行 SELECT。
* `examples` ([String](/zh/reference/data-types/index)) — 使用示例。
* `introduced_in` ([String](/zh/reference/data-types/index)) — 首次引入该表引擎的 ClickHouse 版本，格式为 major.minor。
* `related` ([Array(String)](/zh/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 家族 [查询子句](/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)
