如何在hive脚本中使用查询结果

时间:2016-09-07 16:11:01

标签: hive

我已经尝试过以下但是没有用。

cat nds.ksh

var=$(hive -e "datediff(CONCAT(y, '-', (m + 1), '-', '01'), CONCAT(y, '-', m, '-', '01')) FROM (SELECT month(current_date) as m, year(current_date) as y, day(current_date)) tabl1;")

tt.hql

select
sum(price)/ ${hiveconf:ndays}
from  sales_aly
GROUP BY sales_month;

hive -hiveconf ndays=$var -f tt.hql

请帮帮我。

感谢。

0 个答案:

没有答案