003.hive选择tableName表中除了name、id、pwd之外的所有字段

选择tableName表中除了name、id、pwd之外的所有字段:
set hive.support.quoted.identifiers=None;
select `(name|id|pwd)?+.+` from tableName;
原文地址:https://www.cnblogs.com/star521/p/15160405.html