Skip to main content
Skip to main content

system.tokenizers

Querying in ClickHouse Cloud

The data in this system table is held locally on each node in ClickHouse Cloud. Obtaining a complete view of all data, therefore, requires the clusterAllReplicas function. See here for further details.

Description​

Shows all available tokenizers. These can be used in functions tokens, hasAllTokens, hasAnyTokens, and the text index.

Columns​

  • name (String) — Name of the tokenizer

Example​

SELECT * FROM system.tokenizers;
┌─name────────────┐
│ ngrams          │
│ splitByNonAlpha │
│ sparseGrams     │
│ tokenbf_v1      │
│ ngrambf_v1      │
│ array           │
│ splitByString   │
│ sparse_grams    │
│ asciiCJK        │
└─────────────────┘