字典表引擎
Dictionary
引擎将 字典 数据显示为 ClickHouse 表。
示例
例如,考虑一个具有以下配置的 products
字典
<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>
查询字典数据
SELECT
name,
type,
key,
attribute.names,
attribute.types,
bytes_allocated,
element_count,
source
FROM system.dictionaries
WHERE name = 'products'
┌─name─────┬─type─┬─key────┬─attribute.names─┬─attribute.types─┬─bytes_allocated─┬─element_count─┬─source──────────┐
│ products │ Flat │ UInt64 │ ['title'] │ ['String'] │ 23065376 │ 175032 │ ODBC: .products │
└──────────┴──────┴────────┴─────────────────┴─────────────────┴─────────────────┴───────────────┴─────────────────┘
您可以使用 dictGet* 函数以这种格式获取字典数据。
当您需要获取原始数据或执行 JOIN
操作时,此视图并不实用。对于这些情况,您可以使用 Dictionary
引擎,它将字典数据显示在表中。
语法
CREATE TABLE %table_name% (%fields%) engine = Dictionary(%dictionary_name%)`
用法示例
create table products (product_id UInt64, title String) Engine = Dictionary(products);
Ok
查看表中的内容。
select * from products limit 1;
┌────product_id─┬─title───────────┐
│ 152689 │ Some item │
└───────────────┴─────────────────┘
另请参阅