Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

system.stemmers

Description

Shows all available stemmers. These can be used in the function stem.

Columns:

  • name (String) — Identifier of the Snowball stemmer (language/algorithm)

Example

SELECT * FROM system.stemmers;
 ┌─name───────┐
 │ arabic     │
 │ armenian   │
 │ basque     │
 │ catalan    │
 │ danish     │
 │ dutch      │
 │ english    │
 │ [...]      │
 └────────────┘
Navigation