我需要创建一个hive.hql,如下所示.
HIVE.hql:
select * from tabel1;
select * from table2;
Run Code Online (Sandbox Code Playgroud)
我的问题是:在创建表一之后,我可以在hql代码中回显任何消息到我的控制台,例如"获得table1的结果"
select * from tabel1;
echo/print/output ("table 1 results obtained");
select * from table2;
Run Code Online (Sandbox Code Playgroud)