例如我的模式是
host : String,
timestamp : Date,
comment: String
我希望我的主键是主机,时间戳。
答案 0 :(得分:2)
create table data(host String, timestamp Date, comment String)
engine MergeTree order by (host, timestamp);
MergeTree
的主键与RDMBS的主键不同,因为它不能保证唯一性。为了实现这一目标,您可以查看这两个变体。
https://clickhouse.yandex/docs/en/operations/table_engines/replacingmergetree/
https://clickhouse.yandex/docs/en/operations/table_engines/collapsingmergetree/