赞
踩
表名字段名区分大小写
1.建表
CREATE TABLE default.test
(t1 String COMMENT '备注',
T2 String COMMENT '备注1')
ENGINE = MergeTree
ORDER BY t1
2.update 表
ALTER TABLE test UPDATE t1= '1',T2='2' WHERE 1=1 and ....
3.delete 表
ALTER TABLE default.test delete where 1=1 and ....
3 alter 操作
加字段:alter table test add column T3 String
删除字段:alter table test drop column T3
修改字段:alter table test modify column T3 Int32
增加注释:alter table test comment column T3 '注释名'
4.select
日期转string
SELECT toString(toYYYYMM(DATE)) as yue from table
case 条件
SELECT CASE when T1='0' THEN 0 else 1 end FROM TABLE
去空 TRIM(column)
更多操作见官网:https://clickhouse.tech/docs/zh/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。