码迷,mamicode.com
首页 > 其他好文 > 详细

select列表使用正则的小技巧(HIVE)

时间:2015-09-08 19:59:03      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

Hive 0.13.0之后,select列表支持正则表达式了。对于如下的应用场景

create table tb2 like tb1

insert overwrite table tb2 partition(dt=xx, hr=xx) select * from tb1 是不行的,因为后者是N个列,前者是N-2个列

之前只能

insert overwrite table tb2 partition(dt=xx, hr=xx) select c1, c2, c3, c4... from tb1 

现在可以采用,前提是set hive.support.quoted.identifiers=none

insert overwrite table tb2 partition(dt=xx, hr=xx) select `(dt|hr)?+.+` from tb1

select列表使用正则的小技巧(HIVE)

标签:

原文地址:http://www.cnblogs.com/upoo/p/4792705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!