标签: hive
我正在使用Hive运行查询,并且正在提取日期时间字段,但是我的csv输出文件始终将日期与时间分开。如何防止这种情况发生?
代码:hive -e "select hit_dt_ts from prod_etl.web_fct_hit where hit_dt_1 >= '2018-11-05' and hit_dt_1 <= '2018-1-05' " | sed 's/[[:space:]]\+/^/g' > output.csv
hive -e "select hit_dt_ts from prod_etl.web_fct_hit where hit_dt_1 >= '2018-11-05' and hit_dt_1 <= '2018-1-05' " | sed 's/[[:space:]]\+/^/g' > output.csv
我想要这个输出:
但是我得到了两列: