欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Hive SQL 巧妙实现 SQL EXCEPT

程序员文章站 2022-04-15 12:03:57
...

Hive Sql 不支持 Except 函数, 但是可以巧妙使用用 LEFT OUTER JOIN  + 字段 IS NOT NULL  实现。

Table 1 :
apple
orange
pear

Table 2:
apple
orange

select test_1.id, test_1.num from test_1 left outer join test_2 on (test_2.id = test_2.id) where test_2.num is null;

 

Hive SQL 巧妙实现 SQL EXCEPT

相关标签: hive sql except