如何将几列插入Hive表?

时间:2016-09-28 03:01:09

标签: apache hive bigdata

我在apache hive中有表格,

create table example(
 name String,
 age int,
sex boolean
)coment'this is example table'
patitioned by(year int,month int,day int);

现在,我想只插入一列名称

insert into example(name)  patition(2016,12,10) values("peter");

但它不活跃?我不明白。 拜托,你能告诉我为什么吗?

0 个答案:

没有答案