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

关于Hive中case when不准使用子查询的解决方法

时间:2020-01-27 18:55:28      阅读:433      评论:0      收藏:0      [点我收藏+]

标签:lin   query   tab   header   情况   必须   join   style   mpi   

在公司用Hive实现个规则的时候,遇到了要查询某个字段是否在另一张表中,大概情况就是

A表:

id value1 value2
1 100 0
2 101 1
3 102 1

B表:

value1
100
102
104

我要查询A表中当value2为0的时候直接输出0,为1的时候,判断value1是否在B表的value1中,如果在那么便输出0,不在便输出1,拿到第一反映是:

select 
case
when value2 = 0 then 0
when value2 = 1 then
    case
    when value1 in (select value1 from B) then 0
    else 1
    end
end as value3
from A 

结果Hive就报错了

Error: Error while compiling statement: FAILED: SemanticException Line 0:-1 Unsupported SubQuery Expression ‘value1‘: Currently SubQuery expressions are only allowed as Where Clause predicates.

大概意思就是:目前的子查询表达式只允许为Where条件谓词

于是我们就必须将其改为使用left join来解决。

select
case 
when a.value2 = 0 then 0
when a.value2 = 1 then 
    case when
    b.value1 is not null then 0
    else 1
    END
END as value3 
from A a
left join 
B b
on a.value1 = b.value1;

大功告成,对了,使用的Hive版本为1.1.0

关于Hive中case when不准使用子查询的解决方法

标签:lin   query   tab   header   情况   必须   join   style   mpi   

原文地址:https://www.cnblogs.com/harrylyx/p/12236441.html

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