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

來源:互聯網
上載者:User

標籤:htm   sdn   clear   article   分享   blank   一個   最快   pid   

 

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

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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.