Hive中导出数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hive中导出数据相关的知识,希望对你有一定的参考价值。
一、导出到本地文件
hive> insert overwrite local directory ‘/home/test2‘
二、导出到HDFS中
hive> insert overwrite directory ‘/hdfs/test2‘
三、导出到另一个表中
hive> insert into table test > partition (age=‘25‘) > select id, name, tel > from test2;
以上是关于Hive中导出数据的主要内容,如果未能解决你的问题,请参考以下文章