hive往指定位置添加字段

ALTER TABLE table_name ADD COLUMNS(test STRING,test1 STRING);
alter table table_name add columns(test STRING) after 字段;
alter table table_name change test test string after user_stage_3 ;
【hive往指定位置添加字段】alter table table_name add columns (c_time string comment ‘当前时间’);

    推荐阅读