作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 MS SQL 存储过程中有以下插入:
insert into Status_Table(Field1, Field2, Field3, Status_ID, Status_ID2)
select a.Field1 , a.Field2 , a.Field3 , a.Status_ID , a.Status_ID2
from ##StatusTempTable as a
where a.Status_ID+a.Status_ID2 not in(select Status_ID+Status_ID2 from Status_Table)
在执行插入之前,我将检查是否存在任何具有相同 Status_ID 和 Status_ID2 的行。表 Status_Table 包含超过 3 个 Mio 行,Insert 变得很长。是否有其他方法可以提高性能?
最佳答案
尝试使用 NOT EXISTS
而不是 NOT IN
insert into Status_Table(Field1, Field2, Field3, Status_ID, Status_ID2)
select a.Field1 , a.Field2 , a.Field3 , a.Status_ID , a.Status_ID2
from ##StatusTempTable as a
where not exists(select * from Status_Table s where s.Status_ID = a.Status_ID AND s.Status_ID2 = s.Status_ID2 )
关于sql - NOT IN Insert 的性能增强,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17418835/
我是一名优秀的程序员,十分优秀!