sql中的not in怎么优化
3个回答
展开全部
not exist
例如
select * from a where a.id not in (select id from b)
优化为
select * from a where a.id not exists (select id from b)
例如
select * from a where a.id not in (select id from b)
优化为
select * from a where a.id not exists (select id from b)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用 not exist
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
非到迫不得已不要用,因为not in 不走索引
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询