我在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");
但它不活跃?我不明白。 拜托,你能告诉我为什么吗?