hive表新增字段,修改字段的注释
(1)创建测试表:
use mart_flow_test;create table if not exists mart_flow_test.detail_flow_test
(
union_id string comment '设备唯一标识'
) comment '测试表'
partitioned by (
partition_date string comment '日志生成日期'
) stored as orc;
(2)新增字段:use mart_flow_test;
alter table detail_flow_test add columns(original_union_id string);(3)修改注释:use mart_flow_test;
alter table detail_flow_conversion_base_raw change column original_union_id original_union_id string COMMENT'原始设备唯一性标识’;
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/bian-cheng-ji-chu/107305.html