hive修改表注释,字段注释,分区字段注释

1.修改表注释
alter table 表名 set tblproperties('comment' = '注释');


2.修改字段注释
alter table 表名 change 旧字段名 新字段名 字段类型 comment '注释';


3.修改分区字段注释,需要在元数据库中执行
update partition_keys ps 
join tbls ts on ps.tbl_id = ts.tbl_id 
join dbs ds on ts.db_id = ds.db_id 
set ps.pkey_comment = '注释' 
where ds.name = '库名' and ts.tbl_name = '表名' and ps.pkey_name = '分区字段名';

你可能感兴趣的:(hadoop,hive,hadoop)