2011-04-12 32 views

回答

2
select * from table1 
     left join table2 
     on table1.id=table2.id 
     where table2.id is null 
+0

對不起,在同一時間相同的答案。你想讓我刪除我的嗎? – Marco 2011-04-12 08:05:55

+0

@Macro:對不起?沒問題。這在SO上是很自然的 – 2011-04-12 08:07:25

0

看看這個post
我複製的代碼:

select * from A left join B on A.x=B.y where B.y is null; 
0

應該是這樣的:

SELECT * FROM table2 WHERE table1_id NOT IN (SELECT id FROM table1) 
相關問題