apache 配置单元中变量值和字符串的串联
Concatenation of variable value and string in apache hive
在 apache Hive CLI 或 Beeline CLI 中,我需要将变量的值与字符串连接起来。可以这样做吗?
示例:
设置 path_on_hdfs="/apps/hive/warehouse/my_db.db";
如何获取类似“${hivevar:path_on_hdfs}/myTableName”的内容?
您可以尝试这样的操作:
设置path_on_hdfs=/test1/test2
创建外部 table 测试(id int)
位置 '${hiveconf:path_on_hdfs}/myTable';
应该可以...
在 apache Hive CLI 或 Beeline CLI 中,我需要将变量的值与字符串连接起来。可以这样做吗?
示例: 设置 path_on_hdfs="/apps/hive/warehouse/my_db.db";
如何获取类似“${hivevar:path_on_hdfs}/myTableName”的内容?
您可以尝试这样的操作:
设置path_on_hdfs=/test1/test2
创建外部 table 测试(id int) 位置 '${hiveconf:path_on_hdfs}/myTable';
应该可以...