> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

> 사용 가능한 모든 스테머를 표시하는 시스템 테이블입니다.

# system.stemmers

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

사용 가능한 모든 스테머를 표시합니다.
다음 스테머는 [stem](/docs/ko/reference/functions/regular-functions/nlp-functions) 함수에서 사용할 수 있습니다.

<Info>
  **사용 가능 여부**

  `system.stemmers`는 `libstemmer` 종속성(`USE_LIBSTEMMER`)으로 컴파일된 ClickHouse build에만 존재합니다. 이 종속성이 없는 build에서는 테이블이 존재하지 않으며, 이에 대한 쿼리는 `UNKNOWN_TABLE` 오류와 함께 실패합니다. 다음 쿼리로 현재 build에서 이 옵션이 활성화되어 있는지 확인할 수 있습니다.

  ```sql theme={null}
  SELECT value FROM system.build_options WHERE name = 'USE_LIBSTEMMER';
  ```
</Info>

컬럼:

* `name` ([String](/docs/ko/reference/data-types/index)) — Snowball 어간 추출기(언어/알고리즘)의 식별자

<div id="example">
  ## 예시
</div>

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

```text theme={null}
 ┌─name───────┐
 │ arabic     │
 │ armenian   │
 │ basque     │
 │ catalan    │
 │ danish     │
 │ dutch      │
 │ english    │
 │ [...]      │
 └────────────┘
```
