标签:replace ado exists 主键 add alter back _id 替换
alter table table_name add columns (id int comment ‘主键ID‘ ) ;
默认在表所有字段之后,分区字段之前。
alter table table_name replace columns (id int comment ‘主键ID‘ ) ;
1. 修改字段注释
alter table table_name change id id int comment ‘订单号‘;
2. 修改列名, id 改成 tab_id
alter table table_name change id tab_id int comment ‘订单号‘;
alter table table_name drop if exists partition (statis_date=‘20151015‘);
Hive 模式: dfs -rm -r -f /user/kimbo/table_name/statis_date=${date_7} ;
命令行模式: hadoop fs -rm -r /user/kimbo/table_name/statis_date=${date_7} ;
标签:replace ado exists 主键 add alter back _id 替换
原文地址:http://www.cnblogs.com/kimbo/p/7066283.html