2013-05-21 54 views
0

我有兩個電子郵件地址表。我希望表中的所有電子郵件都不在表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 "%@%" 

我做錯了什麼?

回答

2
select a.mail from a where not exists (select 1 from b where a.mail = b.mail) 
相關問題