You need to enable JavaScript to run this app.
导航
dictionary
最近更新时间:2024.11.22 11:39:29首次发布时间:2024.11.22 11:39:29

将字典数据显示为 ClickHouse 表格。
语法

dictionary('dict')

参数

  • dict — 字典名称。 字符串。

返回值
ClickHouse 表格。
示例
输入表 dictionary_source_table

┌─id─┬─value─┐
│  0 │     0 │
│  1 │     1 │
└────┴───────┘

创建字典

CREATE DICTIONARY new_dictionary(id UInt64, value UInt64 DEFAULT 0) PRIMARY KEY id
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'dictionary_source_table')) LAYOUT(DIRECT());

查询

SELECT * FROM dictionary('new_dictionary');

结果

┌─id─┬─value─┐
│  0 │     0 │
│  1 │     1 │
└────┴───────┘