我在Hive里做了一个嵌套的分区表。但我不知道如何在表中插入数据。
我尝试了插入覆盖表方法。
在Hive里,
create external table accounts_nested(
first_name string, last_name string, zipcode string)
partitioned by (state string, areacode string)
row format delimited
fields terminated by ','
location '/loudacre/accounts_nested';
然后,
insert overwrite table accounts_nested(
partition(areacode)
select first_name, last_name, zipcode, state, areacode from accounts;
我在终端上看不到任何错误,但我看不到插入的数据。
我想看看表中的数据。
1条答案
按热度按时间42fyovps1#
可以使用dinamic分区设置下一个参数。
下面是一个代码示例:
输出: