mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-10 00:12:27 +00:00
24 lines
970 B
SQL
24 lines
970 B
SQL
|
|
CREATE TABLE {CLICKHOUSE_DATABASE:Identifier}.dicttbl(key Int64, value_default String, value_expression String) ENGINE = MergeTree ORDER BY tuple();
|
|
INSERT INTO {CLICKHOUSE_DATABASE:Identifier}.dicttbl VALUES (12, 'hello', '55:66:77');
|
|
|
|
|
|
CREATE DICTIONARY {CLICKHOUSE_DATABASE:Identifier}.dict
|
|
(
|
|
key Int64 DEFAULT -1,
|
|
value_default String DEFAULT 'world',
|
|
value_expression String DEFAULT 'xxx' EXPRESSION 'toString(127 * 172)'
|
|
|
|
)
|
|
PRIMARY KEY key
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'dicttbl' DB currentDatabase()))
|
|
LAYOUT(FLAT())
|
|
LIFETIME(1);
|
|
|
|
|
|
SELECT dictGetString({CLICKHOUSE_DATABASE:String} || '.dict', 'value_default', toUInt64(12));
|
|
SELECT dictGetString({CLICKHOUSE_DATABASE:String} || '.dict', 'value_default', toUInt64(14));
|
|
|
|
SELECT dictGetString({CLICKHOUSE_DATABASE:String} || '.dict', 'value_expression', toUInt64(12));
|
|
SELECT dictGetString({CLICKHOUSE_DATABASE:String} || '.dict', 'value_expression', toUInt64(14));
|