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

> 收录服务器支持的数据跳过索引类型列表及其内置文档的系统表。

# system.data_skipping_index_types

<div id="description">
  ## 描述
</div>

包含服务器支持的数据跳过索引类型列表，以及每种类型的内嵌文档。数据跳过索引类型是在 `CREATE TABLE` 查询中 `INDEX` 声明的 `TYPE` 里指定的，它使 ClickHouse 能够跳过无法匹配查询条件的粒度。

请注意，此表列出的是可用的索引*类型*，而 [`system.data_skipping_indices`](/zh/reference/system-tables/data_skipping_indices) 列出的是在现有表上定义的索引实例。

<div id="columns">
  ## 列
</div>

* `name` ([String](/zh/reference/data-types)) — 数据跳过索引类型的名称，即 `INDEX` 声明中 `TYPE` 指定的名称。
* `description` ([String](/zh/reference/data-types)) — 对该数据跳过索引类型功能的概括性描述。
* `syntax` ([String](/zh/reference/data-types)) — 该索引在 `CREATE TABLE` 查询的 `INDEX` 子句中的声明方式。
* `examples` ([String](/zh/reference/data-types)) — 使用示例。
* `introduced_in` ([String](/zh/reference/data-types)) — 首次引入该索引类型的 ClickHouse 版本，格式为 major.minor。
* `related` ([Array(String)](/zh/reference/data-types)) — 相关数据跳过索引类型的名称。

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

```sql title="Query" theme={null}
SELECT name, syntax
FROM system.data_skipping_index_types
WHERE name IN ('minmax', 'set')
ORDER BY name
```

```text title="Response" theme={null}
┌─name───┬─syntax───────────────────────────────────────┐
│ minmax │ INDEX name expr TYPE minmax GRANULARITY n     │
│ set    │ INDEX name expr TYPE set(max_rows) GRANULARITY n │
└────────┴──────────────────────────────────────────────┘
```

<div id="see-also">
  ## 另请参阅
</div>

* [数据跳过索引](/zh/concepts/features/performance/skip-indexes/skipping-indexes) — 有关数据跳过索引的信息。
* [`system.data_skipping_indices`](/zh/reference/system-tables/data_skipping_indices) — 现有表上定义的索引实例。
