1. 程式人生 > >查存在一個表而不在另一個表中的資料

查存在一個表而不在另一個表中的資料

http://blog.csdn.net/u012732259/article/details/42215119

A、B兩表,找出ID欄位中,存在A表,但是不存在B表的資料。A表總共13w資料,去重後大約3W條資料,B表有2W條資料,且B表的ID欄位有索引。

方法一

  使用 not in ,容易理解,效率低  ~執行時間為:1.395秒~

1 select distinct A.ID from  A where A.ID not in (select ID from B)

方法二

  使用 left join...on... , "B.ID isnull" 表示左連線之後在B.ID 欄位為 null的記錄  ~執行時間:0.739秒~

1 select A.ID from A left join B on A.ID=B.ID where B.ID is null

  圖解

方法三

  邏輯相對複雜,但是速度最快  ~執行時間: 0.570秒~

1  select * from  B 
2     where (select count(1) as num from A where A.ID = B.ID) = 0

 轉載自:http://blog.csdn.NET/windren06/article/details/8188136

例項:

select * from  invite_weixin_friend B 
     where (select count(1) as num from user_profile A where A.mobile = B.friend_phone) = 0 and B.f_uid= 52398