我正在尝试将数据从普通表加载到 Hive 分区表。
这是我的正常表语法:
create table x(name string, date1 string);
这是我的新分区表语法:
create table y (name string, date1 string) partitioned by (timestamp1 string);
以下是我如何将数据加载到 y:
insert into table y PARTITION(SUBSTR(date1,0,2)) select name, date1 from x;
这是我的例外:
FAILED: ParseException line 1:39 missing ) at '(' near ',' in column name
line 1:51 cannot recognize input near '0' ',' '2' in column name