mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
324fd98de6
* Updating of english translation. * Some bugs are fixed.
14 lines
729 B
Markdown
14 lines
729 B
Markdown
# Dictionaries
|
|
|
|
A dictionary is a mapping (`key -> attributes`) that is convenient for various types of reference lists.
|
|
|
|
ClickHouse supports special functions for working with dictionaries that can be used in queries. It is easier and more efficient to use dictionaries with functions than a `JOIN` with reference tables.
|
|
|
|
[NULL](../syntax.md#null-literal) values can't be stored in a dictionary.
|
|
|
|
ClickHouse supports:
|
|
|
|
- [Built-in dictionaries](internal_dicts.md#internal_dicts) with a specific [set of functions](../functions/ym_dict_functions.md#ym_dict_functions).
|
|
- [Plug-in (external) dictionaries](external_dicts.md#dicts-external_dicts) with a [set of functions](../functions/ext_dict_functions.md#ext_dict_functions).
|
|
|