我需要创建一个hive.hql,如下所示。
HIVE.hql:
select * from tabel1;
select * from table2;
我的问题是:在创建表一之后,我可以在hql代码中回显任何消息到我的控制台,例如“获取table1的结果”,如
select * from tabel1;
echo/print/output ("table 1 results obtained");
select * from table2;
答案 0 :(得分:18)
在* .hql文件中,在两个配置单元查询之间插入如下所示的行。
!echo "table 1 results obtained";