Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ClickHouse launches Claude-powered Agents and House Mates partner program at Open House 2026 Read more →
딕셔너리 데이터를 ClickHouse 테이블로 표시합니다. Dictionary 엔진과 같은 방식으로 작동합니다.
dictionary('dict')
dict
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');
이 페이지가 도움이 되었나요?