mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
9ec78855cd
* DOCSUP-2806: Add meta intro. * DOCSUP-2806: Update meta intro. * DOCSUP-2806: Fix meta. * DOCSUP-2806: Add quotes for meta headers. * DOCSUP-2806: Remove quotes from meta headers. * DOCSUP-2806: Add meta headers. * DOCSUP-2806: Fix quotes in meta headers. * DOCSUP-2806: Update meta headers. * DOCSUP-2806: Fix link to nowhere in EN. * DOCSUP-2806: Fix link (settings to tune) * DOCSUP-2806: Fix links. * DOCSUP-2806:Fix links EN * DOCSUP-2806: Fix build errors. * DOCSUP-2806: Fix meta intro. * DOCSUP-2806: Fix toc_priority in examples datasets TOC. * DOCSUP-2806: Fix items order in toc. * DOCSUP-2806: Fix order in toc. * DOCSUP-2806: Fix toc order. * DOCSUP-2806: Fix order in toc. * DOCSUP-2806: Fix toc index in create * DOCSUP-2806: Fix toc order in create. Co-authored-by: romanzhukov <romanzhukov@yandex-team.ru> Co-authored-by: alexey-milovidov <milovidov@yandex-team.ru>
2.5 KiB
2.5 KiB
toc_priority | toc_title |
---|---|
45 | Иерархические словари |
Иерархические словари
ClickHouse поддерживает иерархические словари с числовыми ключом.
Рассмотрим следующую структуру:
0 (Common parent)
│
├── 1 (Russia)
│ │
│ └── 2 (Moscow)
│ │
│ └── 3 (Center)
│
└── 4 (Great Britain)
│
└── 5 (London)
Эту иерархию можно выразить в виде следующей таблицы-словаря.
region_id | parent_region | region_name |
---|---|---|
1 | 0 | Russia |
2 | 1 | Moscow |
3 | 2 | Center |
4 | 0 | Great Britain |
5 | 4 | London |
Таблица содержит столбец parent_region
, содержащий ключ ближайшего предка для текущего элемента.
ClickHouse поддерживает свойство hierarchical для атрибутов внешнего словаря. Это свойство позволяет конфигурировать словари, подобные описанному выше.
С помощью функции dictGetHierarchy можно получить цепочку предков элемента.
Структура словаря для нашего примера может выглядеть следующим образом:
<dictionary>
<structure>
<id>
<name>region_id</name>
</id>
<attribute>
<name>parent_region</name>
<type>UInt64</type>
<null_value>0</null_value>
<hierarchical>true</hierarchical>
</attribute>
<attribute>
<name>region_name</name>
<type>String</type>
<null_value></null_value>
</attribute>
</structure>
</dictionary>