如何在配置单元中获取表a中但不在表b中的所有条目?
table A = jobs (id, duration) table B = other_jobs (id, duration)
我想要a中的所有作业都不出现在b中,每个作业都有一个唯一的id,如图所示:http://codinghorror.typepad.com/.a/6a0120a85dcdae970b012877702754970c-pi谢谢您!
zbdgwd5y1#
答案是:
SELECT jobs.* FROM jobs LEFT OUTER JOIN other_jobs ON (jobs.id = other_jobs.id) WHERE other_jobs.id IS NULL;
1条答案
按热度按时间zbdgwd5y1#
答案是: