> ## 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` 함수를 사용해야 합니다. 자세한 내용은 [여기](/ko/reference/system-tables/overview#system-tables-in-clickhouse-cloud)를 참조하십시오.
</Info>

<div id="description">
  ## 설명
</div>

사용 가능한 모든 토크나이저를 표시합니다.
이 토크나이저는 [tokens](/ko/reference/functions/regular-functions/splitting-merging-functions#tokens), [hasAllTokens](/ko/reference/functions/regular-functions/string-search-functions#hasAllTokens), [hasAnyTokens](/ko/reference/functions/regular-functions/string-search-functions#hasAnyTokens) 함수와 [텍스트 인덱스](/ko/reference/engines/table-engines/mergetree-family/textindexes)에서 사용할 수 있습니다.

<div id="columns">
  ## 컬럼
</div>

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