(轉)A、B兩表,找出ID字段中,存在A表,可是不存在B表的數據。A表總共13w數據,去重後大約3W條數據,B表有2W條數據,且B表的ID字段有索引。spa
使用 not in ,容易理解,效率低 ~執行時間爲:1.395秒~ (第一種方法親測可用)code
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秒~blog
1 select A.ID from A left join B on A.ID=B.ID where B.ID is null
圖解
索引
邏輯相對複雜,可是速度最快 ~執行時間: 0.570秒~(感受這種方式挺好)get
1 select * from B
2 where (select count(1) as num from A where A.ID = B.ID) = 0class