2020-04-08 14:22:25 +00:00
|
|
|
# 字典 {#dictionary}
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
`Dictionary` 引擎将字典数据展示为一个ClickHouse的表。
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
例如,考虑使用一个具有以下配置的 `products` 字典:
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-03-20 18:20:59 +00:00
|
|
|
``` xml
|
2018-11-30 19:26:35 +00:00
|
|
|
<dictionaries>
|
|
|
|
<dictionary>
|
|
|
|
<name>products</name>
|
|
|
|
<source>
|
|
|
|
<odbc>
|
|
|
|
<table>products</table>
|
|
|
|
<connection_string>DSN=some-db-server</connection_string>
|
|
|
|
</odbc>
|
|
|
|
</source>
|
|
|
|
<lifetime>
|
|
|
|
<min>300</min>
|
|
|
|
<max>360</max>
|
|
|
|
</lifetime>
|
|
|
|
<layout>
|
|
|
|
<flat/>
|
|
|
|
</layout>
|
|
|
|
<structure>
|
|
|
|
<id>
|
|
|
|
<name>product_id</name>
|
|
|
|
</id>
|
|
|
|
<attribute>
|
|
|
|
<name>title</name>
|
|
|
|
<type>String</type>
|
|
|
|
<null_value></null_value>
|
|
|
|
</attribute>
|
|
|
|
</structure>
|
|
|
|
</dictionary>
|
|
|
|
</dictionaries>
|
|
|
|
```
|
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
查询字典中的数据:
|
2018-11-30 19:26:35 +00:00
|
|
|
|
|
|
|
``` sql
|
2020-03-20 18:20:59 +00:00
|
|
|
select name, type, key, attribute.names, attribute.types, bytes_allocated, element_count,source from system.dictionaries where name = 'products';
|
2018-11-30 19:26:35 +00:00
|
|
|
|
|
|
|
SELECT
|
|
|
|
name,
|
|
|
|
type,
|
|
|
|
key,
|
|
|
|
attribute.names,
|
|
|
|
attribute.types,
|
|
|
|
bytes_allocated,
|
|
|
|
element_count,
|
|
|
|
source
|
|
|
|
FROM system.dictionaries
|
|
|
|
WHERE name = 'products'
|
|
|
|
```
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
┌─name─────┬─type─┬─key────┬─attribute.names─┬─attribute.types─┬─bytes_allocated─┬─element_count─┬─source──────────┐
|
|
|
|
│ products │ Flat │ UInt64 │ ['title'] │ ['String'] │ 23065376 │ 175032 │ ODBC: .products │
|
|
|
|
└──────────┴──────┴────────┴─────────────────┴─────────────────┴─────────────────┴───────────────┴─────────────────┘
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-04-30 18:19:18 +00:00
|
|
|
你可以使用 [dictGet\*](../../../engines/table-engines/special/dictionary.md) 函数来获取这种格式的字典数据。
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
当你需要获取原始数据,或者是想要使用 `JOIN` 操作的时候,这种视图并没有什么帮助。对于这些情况,你可以使用 `Dictionary` 引擎,它可以将字典数据展示在表中。
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
语法:
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
CREATE TABLE %table_name% (%fields%) engine = Dictionary(%dictionary_name%)`
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
示例:
|
2018-11-30 19:26:35 +00:00
|
|
|
|
|
|
|
``` sql
|
|
|
|
create table products (product_id UInt64, title String) Engine = Dictionary(products);
|
|
|
|
|
|
|
|
CREATE TABLE products
|
|
|
|
(
|
|
|
|
product_id UInt64,
|
|
|
|
title String,
|
|
|
|
)
|
|
|
|
ENGINE = Dictionary(products)
|
|
|
|
```
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
Ok.
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
0 rows in set. Elapsed: 0.004 sec.
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2019-04-23 20:25:24 +00:00
|
|
|
看一看表中的内容。
|
2018-11-30 19:26:35 +00:00
|
|
|
|
|
|
|
``` sql
|
|
|
|
select * from products limit 1;
|
|
|
|
|
|
|
|
SELECT *
|
|
|
|
FROM products
|
|
|
|
LIMIT 1
|
|
|
|
```
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
┌────product_id─┬─title───────────┐
|
|
|
|
│ 152689 │ Some item │
|
|
|
|
└───────────────┴─────────────────┘
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
1 rows in set. Elapsed: 0.006 sec.
|
2018-11-30 19:26:35 +00:00
|
|
|
|
2020-01-30 10:34:55 +00:00
|
|
|
[来源文章](https://clickhouse.tech/docs/en/operations/table_engines/dictionary/) <!--hide-->
|