Skip to main content

描述

包含 server 支持的表引擎及其功能支持情况的说明。 此表包含以下列 (列类型显示在括号中) :
  • name (String) — 表引擎名称。
  • supports_settings (UInt8) — 指示表引擎是否支持 SETTINGS 子句的标志。
  • supports_skipping_indices (UInt8) — 指示表引擎是否支持跳数索引的标志。
  • supports_projections (UInt8) — 指示表引擎是否支持投影的标志。
  • supports_sort_order (UInt8) — 指示表引擎是否支持 PARTITION_BY、PRIMARY_KEY、ORDER_BY 和 SAMPLE_BY 子句的标志。
  • supports_ttl (UInt8) — 指示表引擎是否支持生存时间 (TTL) 的标志。
  • supports_replication (UInt8) — 指示表引擎是否支持数据复制的标志。
  • supports_deduplication (UInt8) — 指示表引擎是否支持数据去重的标志。
  • supports_parallel_insert (UInt8) — 指示表引擎是否支持并行插入的标志 (请参阅 max_insert_threads 设置) 。
  • description (String) — 表引擎功能的描述。对于有专门文档页面的引擎,此处包含该页面完整的 Markdown 正文;对于其余引擎,则为简要摘要。
  • syntax (String) — 创建表时表引擎的使用方式。对于大多数引擎,这是 CREATE TABLE 查询中的 ENGINE 子句;但某些引擎 (例如各种视图或 Loop 引擎) 通过其他方式使用,例如 CREATE VIEW 或从表函数中 SELECT。
  • examples (String) — 使用示例。
  • introduced_in (String) — 首次引入该表引擎的 ClickHouse 版本,格式为 major.minor。
  • related (Array(String)) — 相关表引擎的名称。

示例

Query
Response

另请参阅

最后修改于 2026年8月14日