18

我在蜂巢中有一个数据库人员。它的架构如下:

name string,
dob_date int,
dob_month int,
dob_year int.

我已成功将文件中的数据加载到数据库中。
现在我想让人们dob_year=1990进入一张新桌子。
以下代码不起作用:

Select * into people1990 from people where dob_year=1990;
4

1 回答 1

31

您可以像在 Hive 中一样使用create table tablename 。

例子:

create table people1990 as select * from people where dob_year=1990 
于 2013-08-05T06:16:00.260 回答