clickhouse的http api与curl命令操作
创建表curl方式:echo ‘create table test.student11(dt Date, id UInt16, name String, age UInt16) ENGINE=MergeTree(dt, (id, name), 10)’| curl -XPOST ‘http://localhost:8123/’ -d @-api方式:HttpClientUtil.doPostByString(“http://node02:8123/”,“create table test.st