因为doris完全兼容mysql协议,因此操作上基本与mysql没有太大区别,
之需要注意与doris相关的关键字即可,如:预聚合,key等
create table table1 {
siteid int default '10',
citycode smallint,
username varchar(32) default '',
-- 预聚合 --
pv bigint sum default '0'
}
# uv字段用到了sum预聚合,key属性将为false
alter table table1 add column uv bigint sum default '0' after pv;
# age没有用到预聚合,key是true
alter table table1 add column age int default '18' after
alter table table1 drop column age;