ClickHouse/docs/en/sql-reference/dictionaries/index.md
Ivan Blinkov 7170f3c534
[docs] split aggregate function and system table references (#11742)
* prefer relative links from root

* wip

* split aggregate function reference

* split system tables
2020-06-18 11:24:31 +03:00

1020 B
Raw Blame History

toc_folder_title toc_priority toc_title
Dictionaries 35 Introduction

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 values cant be stored in a dictionary.

ClickHouse supports:

Original article