Hive实现类似不等连接的方式

Hive实现类似不等连接的方式
left join
(
select c1,c2,c3
from table
where ds = '${yyyyMMdd,-1d}'
group by c1,c2,c3
) t1
on (TRUE)
WHERE LOCATE(t.c1,t1.c1)>0
and LOCATE(t.c2,t1.c2)>0
and t.c3 = t1.c3

Hive实现类似不等连接的方式最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/25603.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>