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;