> ## 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` 関数を使用する必要があります。詳細については、[こちら](/ja/reference/system-tables/overview#system-tables-in-clickhouse-cloud)を参照してください。
</Info>

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

利用可能なすべてのトークナイザーを表示します。
これらは、[tokens](/ja/reference/functions/regular-functions/splitting-merging-functions#tokens)、[hasAllTokens](/ja/reference/functions/regular-functions/string-search-functions#hasAllTokens)、[hasAnyTokens](/ja/reference/functions/regular-functions/string-search-functions#hasAnyTokens) の各関数、および [テキスト索引](/ja/reference/engines/table-engines/mergetree-family/textindexes) で使用できます。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/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        │
└─────────────────┘
```
