在Hive中,如何在hql中生成动态表名?

时间:2019-02-15 07:13:30

标签: hive hql

我想在hql中生成动态表名,该表使用beeline运行。

在db2中,我可以使用||来实现此要求。 例如,使用year生成表名'as400.trxfintrx_' || year(current date),但是如何在hive'hql中实现呢?

1 个答案:

答案 0 :(得分:0)

如果我理解正确,那么您希望表名被参数化,

为此,您可以使用配置单元变量,

create table dbName.table1_${hivevar:yearMonthDate}
(
c1 int,
c2 int
)
stored as orc
tblproperties('ZLIB');

$ hive -f test_create_table.hql --hivevar yearMonthDate=20190215
OK
Time taken: 1.149 seconds
$ hive
Hive-on-MR is deprecated in Hive 2 and may not be available in the future versions. Consider using a different execution engine (i.e. spark, tez) or using Hive 1.X releases.
hive> use dbname;
OK
Time taken: 0.726 seconds
hive> desc table1_20190215;
OK
c1                      int
c2                      int
Time taken: 0.302 seconds, Fetched: 2 row(s)

您可以参考https://cwiki.apache.org/confluence/display/Hive/LanguageManual+VariableSubstitution

在beeline终端上,您无法定义任何函数来设置参数值,然后在查询中使用它们。

希望这会有所帮助