最近经常遇到hive的表要在某个表的指定位置添加字段,总结一下:
分两步,先添加字段到最后(add columns),然后再移动到指定位置(change)
-
alter table table_name add columns (c_time string comment '当前时间'); -- 正确,添加在最后
-
alter table table_name change c_time c_time string after address ; -- 正确,移动到指定位置,address字段的后面
如果添加字段时不加()会报错,网上有很多都没有(),如果写成“column”不加“s”也会报错!
-
alter table table_name add column c_time string comment '当前时间' after address ; -- 报错
-
alter table table_name add columns c_time string comment '当前时间' after address ; -- 报错
-
alter table table_name add columns (c_time string comment '当前时间' after address ); -- 报错
-
alter table table_name add columns (c_time string comment '当前时间') after address ; -- 报错
-
阅读(28330) | 评论(0) | 转发(0) |