我想在配置单元脚本中运行date命令。作为一个shell命令,我尝试使用前面的“!”。尝试了以下操作:
hive (default)> !date --date="6 months ago"; date: extra operand `ago"' Try `date --help' for more information. Command failed with exit code = 1
ljsrvy3e1#
正如@samson在comment中提到的,hive不解析命令 --date="6 months ago"; . 您可以使用下面的解决方法。
--date="6 months ago";
select add_months(current_date(),-6);
1条答案
按热度按时间ljsrvy3e1#
正如@samson在comment中提到的,hive不解析命令
--date="6 months ago";
. 您可以使用下面的解决方法。