後不匹配的行我不知道如何正確地問這個,但在這裏它是:迴流連接兩個表
表1
id | email
---------------------------
1 [email protected]
---------------------------
2 [email protected]
---------------------------
3 [email protected]
---------------------------
4 [email protected]
---------------------------
5 [email protected]
---------------------------
6 [email protected]
---------------------------
7 [email protected]
表2
id | email_two
---------------------------
7 [email protected]
---------------------------
10 [email protected]
---------------------------
33 [email protected]
---------------------------
99 [email protected]
---------------------------
109 [email protected]
---------------------------
299 [email protected]
問題:
如何正確連接兩個表,並通過電子郵件獲得不匹配的結果?例如,我需要從兩個表中獲得的是:
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
因爲其他電子郵件相互匹配。
代碼
SELECT email_two FROM table2 b WHERE NOT EXISTS (SELECT * FROM table1 a WHERE a.email = b.email_two
此代碼只返回從表2失蹤的人,但我不能找到一個正確的方法,從兩個表在一個查詢返回結果失蹤。
感謝您的任何答案。
謝謝。這是工作。 – Tauras