- 查看
除了sample_date
以外的所有字段信息
set hive.support.quoted.identifiers=none;
select `(sample_date)?+.+`
from `test`.`table` where sample_date='20230713';
- 查看
除了sample_date 和 msgtype
以外的所有字段信息
set hive.support.quoted.identifiers=none;
select `(sample_date|msgtype)?+.+`
from `test`.`table` where sample_date='20230713';
上面的
set hive.support.quoted.identifiers=none;
可以替换操作:文章来源:https://www.toymoban.com/news/detail-695811.html在
'hive-site.xml'
中添加以下配置:hive.support.quoted.identifiers=none
文章来源地址https://www.toymoban.com/news/detail-695811.html
到了这里,关于【Hive-SQL】Hive Select 选择语句排除一列或多列的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!