大数据--------关于Hive Union使用说明

我在使用Hive SQL时,用关系型数据库SQL的语法写的Hive SQL.当进行多表union的时候,对数据进行去重,我用了如下SQL:

select bacc,lst_int_prvs_dt,lst_txn_mf_sn 
from test1
union 
select bacc,lst_int_prvs_dt,lst_txn_mf_sn 
from test2;

在运行的时候,错误信息为: 

Error: Error while compiling statement: FAILED: ParseException line 4:0 missing ALL at 'select' near '<EOF>' (state=42000,code=40000)

提示少了ALL,查询了hive官网关于union的用法说明,发现hive1.2.0之前的版本只支持union all,在1.2.0之后的版本才支持union,然后我看了一下我的版本是1.1.0

我的hive版本信息为:

Connected to: Apache Hive (version 1.1.0)
Driver: Hive JDBC (version 1.1.0)
Transaction isolation: TRANSACTION_REPEATABLE_READ
Beeline version 1.1.0 by Apache Hive

解决办法:只能使用union all,然后再在外边套一层select distinct自己手动实现去重即可解决。

select distinct bacc,lst_int_prvs_dt,lst_txn_mf_sn
from (
select bacc,lst_int_prvs_dt,lst_txn_mf_sn 
from test1
union 
select bacc,lst_int_prvs_dt,lst_txn_mf_sn 
from test2);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值