> ## 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/ja/reference/functions/regular-functions/nlp-functions) で使用できます。

<Info>
  **利用可否**

  `system.stemmers` は、`libstemmer` 依存関係 (`USE_LIBSTEMMER`) を有効にしてコンパイルされた ClickHouse のビルドにのみ存在します。これを含まないビルドでは、このテーブルは存在せず、これに対するクエリは `UNKNOWN_TABLE` で失敗します。ビルドでこれが有効になっているかどうかは、次のように確認できます。

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

カラム:

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