先说结论
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
里打印的内容输出到文件
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
里打印的内容输出到文件