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

> 显示所有可用分词器的系统表。

# system.tokenizers

<Info>
  **在 ClickHouse Cloud 中查询**

  此系统表中的数据分别保存在 ClickHouse Cloud 各节点的本地。因此，如需查看所有数据的完整情况，需要使用 `clusterAllReplicas` 函数。更多详情请参见[此处](/zh/reference/system-tables/overview#system-tables-in-clickhouse-cloud)。
</Info>

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

显示所有可用的分词器。
这些分词器可用于函数 [tokens](/zh/reference/functions/regular-functions/splitting-merging-functions#tokens)、[hasAllTokens](/zh/reference/functions/regular-functions/string-search-functions#hasAllTokens)、[hasAnyTokens](/zh/reference/functions/regular-functions/string-search-functions#hasAnyTokens) 以及 [文本索引](/zh/reference/engines/table-engines/mergetree-family/textindexes)。

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

* `name` ([String](/zh/reference/data-types)) — 分词器名称

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

```sql theme={null}
SELECT * FROM system.tokenizers;
```

```text theme={null}
┌─name────────────┐
│ ngrams          │
│ splitByNonAlpha │
│ sparseGrams     │
│ tokenbf_v1      │
│ ngrambf_v1      │
│ array           │
│ splitByString   │
│ sparse_grams    │
│ asciiCJK        │
└─────────────────┘
```
