码迷,mamicode.com
首页 > 数据库 > 详细

SQL优化

时间:2016-06-08 12:28:32      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

原句,执行时间:2.78s
UPDATE pro_ProductEvaluate
SET hasPic = 1
WHERE
ID IN (
SELECT
c.ID
FROM
(
SELECT
a.ID
FROM
pro_ProductEvaluate a
INNER JOIN pro_ProductEvaluateImage b ON a.ID = b.pro_ProductEvaluateID
WHERE
1 = 1
AND a.CreateTime >= ‘2016-06-03 01:05:00‘
AND a.hasPic IS NULL
AND b.State = 1
) c
)

 

 

优化后:执行时间:0.38s
update pro_ProductEvaluate
set hasPic=1
where CreateTime>= ‘2016-06-03 01:05:00‘ and hasPic is null
and exists(
select 1 from pro_ProductEvaluateImage b
where b.State=1 and pro_ProductEvaluate.id=b.pro_ProductEvaluateID
)

SQL优化

标签:

原文地址:http://www.cnblogs.com/hankyoon/p/5569468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!