赞
踩
新接触了hive数据库,发现hive语句和其他SQL语句有些许不同,在此记录一下
1.字段新增
新增字段语句的字段名称和类型有所不同。假如添加两个字段column_1字段类型为string,column_2字段类型为int,hive中的语法为:
alter table table_name add columns (column_1 string,column_2 int)
2.修改字段
alter table table_name change column__1 a1 string;
3.删除字段
在hive中不能使用alter table table_name drop columns这种语法,这里可以使用replace:
alter table table_name replace columns(
column_1 string);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。