我需要创建一个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;

最佳答案

在* .hql文件中,在两个配置单元查询之间插入一行,如下所示。

!echo "table 1 results obtained";

关于hadoop - 以hql/hive查询语言输出/回显消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28703405/

10-12 23:01