1
0
Fork 0
telegraf/plugins/inputs/clickhouse/dev/init_schema.sql

7 lines
198 B
MySQL
Raw Permalink Normal View History

DROP TABLE IF EXISTS default.test;
CREATE TABLE default.test(
Nom String,
Code Nullable(String) DEFAULT Null,
Cur Nullable(String) DEFAULT Null
) ENGINE=MergeTree() ORDER BY tuple();