标签: sql hive
蜂巢:如何通过正则表达式选择除列名“ cust_id”以外的所有列?
答案 0 :(得分:1)
首先,使用以下配置更新hive-site.xml:
set hive.support.quoted.identifiers=none;
现在运行以下查询:
SELECT `(cust_id)?+.+` FROM <TABLE>;