我在蜂巢中有一个数据库人员。它的架构如下:
name string,
dob_date int,
dob_month int,
dob_year int.
我已成功将文件中的数据加载到数据库中。
现在我想让人们dob_year=1990
进入一张新桌子。
以下代码不起作用:
Select * into people1990 from people where dob_year=1990;
您可以像在 Hive 中一样使用create table tablename 。
例子:
create table people1990 as select * from people where dob_year=1990