【Hive-SQL】Hive Select 选择语句排除一列或多列

  • 查看除了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

相关推荐
百***490041 分钟前
SQL Server查看数据库中每张表的数据量和总数据量
数据库·sql·oracle
q***78375 小时前
SQL实现md5加密方法
数据库·sql
红树林075 小时前
渗透测试之sql注入--报错注入
数据库·sql·安全·web安全
Appreciate(欣赏)6 小时前
JAVA使用poi类读取xlxs文件内容拼接成添加数据SQL
java·开发语言·sql
q***23577 小时前
python的sql解析库-sqlparse
数据库·python·sql
q***92517 小时前
sql实战解析-sum()over(partition by xx order by xx)
数据库·sql
q***06478 小时前
Spring Boot 从 2.7.x 升级到 3.3注意事项
数据库·hive·spring boot
TDengine (老段)9 小时前
MySQL/PG/TDengine 时间范围 SQL 表达式
sql·mysql·tdengine
q***710110 小时前
SQL注入(SQL Injection)攻击原理与防御措施
数据库·sql·oracle
f***R810 小时前
解决bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException
java·数据库·sql