当前位置:网站首页>【HQL】(二) 查询使用正则表达式做列选择
【HQL】(二) 查询使用正则表达式做列选择
2022-08-03 05:22:00 【cbigchaos】
工作中遇到这样的场景:查询时少数列不需要,需要的其余列数量又较多
Hive 0.13.0
之后,select列表支持正则表达式
了
查询时使用SELECT语句的时候采用正则表达式做列选择
废话不多说上例子
原表数据:
hive> select * from tab1;
OK
user_id opration log_time
1 A 2019/5/1
1 A 2019/5/2
1 A 2019/5/3
2 A 2019/5/1
2 A 2019/5/3
2 A 2019/5/7
2 A 2019/5/31
3 A 2019/5/1
3 A 2019/5/2
Time taken: 0.046 seconds, Fetched: 10 row(s)
查询除个别字段外的剩余所有字段
PS:使用这个技巧需要设定一个参数set hive.support.quoted.identifiers=none
select `(user_id)?+.+` from tab1;
结果:
踩了个坑
未设定参数导致报错
hive> select `(user_id)?+.+` from tab1;
FAILED: SemanticException [Error 10004]: Line 1:7 Invalid table alias or column
reference '(user_id)?+.+': (possible column names are: user_id, opration, log_time)
在spark SQL中加参数
set spark.sql.parser.quotedRegexColumnNames=true
参考:https://blog.csdn.net/qq_29232943/article/details/79462381
边栏推荐
猜你喜欢
随机推荐
pta a.1003 的收获
npm run dev/serve 时报错
【Arduino】关于“&”和“|” 运算-----多个参数运算结果异常的问题解决
-角谷猜想-
【DC-4靶场渗透】
求因子数量
私有变量(private) 【详细+易懂】
理论上的嵌入式跑马灯
下拉框数据字典应用案例
-元素之和-
-钞票兑换-
令人愉快的 Nuxt3 教程 (二): 快速轻松地搭建博客
取某一区间中素数的个数--洛谷P1865 A % B Problem
HoloLens联合发明人:打造理想的全天AR需要解决这些问题
经典论文-ResNet
二叉树的合并[C]
-寻找鞍点-
[CSRF, SSRF, XXE, PHP deserialization, Burpsuite]
当奈飞的NFT忘记了web2的业务安全
Leetcode刷题——128. 最长连续序列