Mysql 對比兩張表數據

第一種方案:sql select  *  from  tb_a   A  where  NOT EXISTS (select 1 from tb_b  B  where  A.ID = B.ID)  LIMIT 10000 ; 第二種方案:   select  *  from  tb_a   A  where  A.ID  NOT IN(select  B.ID  from tb_b  B )  
相關文章
相關標籤/搜索