标签:insert tween 新建 查询优化 proc 查询 create 替换 放弃
select id from t where name like ‘abc%’
这类代码不会返回任何结果集,但是会消耗系统资源的,应改成这样:
create table #t(…)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
标签:insert tween 新建 查询优化 proc 查询 create 替换 放弃
原文地址:https://www.cnblogs.com/li-sx/p/9207057.html