0

我有两张桌子,每张都有电子邮件地址。a我想要 table 中所有不在 table 中的电子邮件b

这是我的查询,它似乎挂起。我肯定错过了什么..

SELECT c.Field_23_4306 AS email, c.Field_25_9341, c.Field_26_1838, c.Field_40_7355
FROM FORM_7 c
LEFT JOIN bounceback b ON c.Field_23_4306 = b.email
WHERE c.Field_23_4306 LIKE "%@%"

我做错了什么?

4

1 回答 1

2
select a.mail from a where not exists (select 1 from b where a.mail = b.mail)
于 2013-05-21T01:29:38.897 回答