当前位置:   article > 正文

hive数据库字段的操作_hive alter table replace

hive alter table replace

HIVE数据库字段的添加,修改,删除

新接触了hive数据库,发现hive语句和其他SQL语句有些许不同,在此记录一下
1.字段新增
新增字段语句的字段名称和类型有所不同。假如添加两个字段column_1字段类型为string,column_2字段类型为int,hive中的语法为:

alter table table_name add columns (column_1 string,column_2 int) 
  • 1

2.修改字段

alter table table_name change column__1 a1 string;
  • 1

3.删除字段
在hive中不能使用alter table table_name drop columns这种语法,这里可以使用replace:

alter table table_name replace columns(
column_1 string);
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/911326
推荐阅读
相关标签
  

闽ICP备14008679号