Hive表导出成csv文件
2018-06-23 本文已影响235人
7ccc099f4608
先说结论
hive -e "set hive.cli.print.header=true; select * from data_table where some_query_conditions" | sed 's/[\t]/,/g' > hhd.csv
分析
set hive.cli.print.header=true
能将表头输出;
sed 's/[\t]/,/g'
将\t
替换成,
>
将shell
里打印的内容输出到文件