请高手指导,sql如何提高嵌套查询效率

sql语句如下select*fromdh_wwherenumin(selectpicture_idfromdh_productwhereidnotin(selectsm_... sql语句如下
select * from dh_w where num in (select picture_id from dh_product where id not in(select sm_product_id from dh_had_upload where shop_cr='IU') and id not in(select sm_product_id from dh_arrange_upload where shop_cr='IU')) order by id limit 0,90
影响的数据栏: 0
时间: 41.072ms
执行时间太长了。有木有改善方法?请高手指导。谢谢!!
展开
 我来答
charles_caicai
2014-07-23 · TA获得超过129个赞
知道小有建树答主
回答量:83
采纳率:0%
帮助的人:75.8万
展开全部
给shop_cr 字段加索引
not改成左外连接 + 空值判断

select a.* from dh_w a,(
select c.picture_id from dh_product c left outer join (
SELECT sm_product_id FROM dh_had_upload WHERE shop_cr='IU'
union
SELECT sm_product_id FROM dh_arrange_upload WHERE shop_cr='IU'
) d on c.id = d.sm_product_id
where d.sm_product_id is null
)b where a.num =b.picture_id
ORDER BY a.id limit 0,90
百度网友af5f7eb
2014-07-22 · TA获得超过158个赞
知道小有建树答主
回答量:440
采纳率:0%
帮助的人:93.4万
展开全部
可以一部分一部分筛选吧,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-07-22
展开全部
尽量少用in,使用EXISTS;另外,必要时给连接的列加上索引
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式