1

如何获取 Hive 中表 A 中但不在表 B 中的所有条目?

table A = jobs  (id, duration)
table B = other_jobs (id, duration)

我想要 A 中没有出现在 B 中的所有作业,每个作业都有一个唯一的 id,如下图所示: http ://codinghorror.typepad.com/.a/6a0120a85dcdae970b012877702754970c-pi

谢谢!

4

1 回答 1

2

答案是:

SELECT jobs.* 
FROM jobs 
LEFT OUTER JOIN other_jobs 
ON (jobs.id = other_jobs.id) 
WHERE other_jobs.id IS NULL;
于 2013-07-03T18:26:39.833 回答