web-dev-qa-db-ja.com

Hive Select Into

Hiveにデータベース担当者がいます。スキーマは次のとおりです。

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

ファイルからデータベースにデータを正常にロードしました。
今、私はdob_year=1990を持っている人々を新しいテーブルに入れたいと思っています。
次のコードは機能しません:

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

Hiveで create table tablename as を使用できます。

例:

create table people1990 as select * from people where dob_year=1990 
25