求优化一句sql语句,not in速度太慢了
selecttbl1.idfromtable1tbl1wheretbl1.idnotin(selecttbl2.idfromtable2tbl2);tbl1有9万条数据,...
select tbl1.id from table1 tbl1 where tbl1.id not in (select tbl2.id from table2 tbl2);
tbl1有9万条数据,tbl2有3万条数据 展开
tbl1有9万条数据,tbl2有3万条数据 展开
5个回答
展开全部
有俩种方法可以提高查询效率, 1、 用not exists 代替 not in , 这种发法没有改变查询数据的形式,所以可能效果不明显。 2、 利用索引查询, select tbl1.id from table1 tbl1 left join table2 tbl2 on tbl1.id = tbl2.id where tbl2.id = null; 这个是把table2表过滤,查询直接找索引。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用not exists 代替 not in
select tbl1.id from table1 tbl1 where not exists (select 1 from table2 tbl2 where tbl1.id = tbl2.id);
select tbl1.id from table1 tbl1 where not exists (select 1 from table2 tbl2 where tbl1.id = tbl2.id);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用not exists 代替 not in
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那就用 not exists
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
两种方案:
1、分别给两表的id加索引(效果显著)
2、不用子查询
select tbl1.id from table1 tbl1 left join tbl2 on tbl1.id=tbl2.id
where tbl2.id is null
1、分别给两表的id加索引(效果显著)
2、不用子查询
select tbl1.id from table1 tbl1 left join tbl2 on tbl1.id=tbl2.id
where tbl2.id is null
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询