hive修改字段类型

修改字段类型

alter table 表名 change column 原字段名 现字段名 字段类型

hive修改表注释:

alter table  table_name set tblproperties('comment' = '表的新注释');

添加字段

alter table table_name add columns (column_1 string,column_2 int)
    原文作者:¤睿
    原文地址: https://blog.csdn.net/weixin_42856363/article/details/111990725
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞