- 查看
除了sample_date
以外的所有字段信息
sql
set hive.support.quoted.identifiers=none;
select `(sample_date)?+.+`
from `test`.`table` where sample_date='20230713';
- 查看
除了sample_date 和 msgtype
以外的所有字段信息
sql
set hive.support.quoted.identifiers=none;
select `(sample_date|msgtype)?+.+`
from `test`.`table` where sample_date='20230713';
上面的
set hive.support.quoted.identifiers=none;
可以替换操作:在
'hive-site.xml'
中添加以下配置:
hive.support.quoted.identifiers=none