提前创建好一个student路径在/opt/module/hive下
1、导出到本地文件系统:
mkdir student
然后输入:
insert overwrite local directory '/opt/module/hive/student' select * from student;
2、导出到HDFS
insert overwrite directory '/student' row format delimited fields terminated by ',' select * from student;Hive Shell 命令导出
在/opt/module/hive路径下创建好用于存储导出数据的文件
touch student1.txt
bin/hive -e 'select * from default.student;' >> student1.txt
注:>>表示追加的意思,>表示覆盖。
export table student to '/student1';
'/student1’是HDFS上的数据存储路径