我正在使用
在hive中创建表create table stores(
storeid integer,
area string,
city string,
state string,
country string)
答案 0 :(得分:0)
尝试使用INT代替Integer。
答案 1 :(得分:0)
答案 2 :(得分:0)
INTEGER可以从Hive 2.2.0版开始使用。对于早期版本,应使用INT。
尝试使用此DDL:
create table stores(
storeid int,
area string,
city string,
state string,
country string);