【sql】sql查询is not null速度慢的一种处理方式

时间:2019-01-21 12:11:45   收藏:0   阅读:1738

数据库连表查询中的nvarchar类型字段,tb_Users.Certificates is not null条件,is not null 会导致查询速度慢很多(因为和“=”号条件遍历方式不一样)。

替换为 “LEN(tb_Users.Certificates) >0”,利用 Users.Certificates为空时整个计算返回false,达到筛选效果。有其他更好的处理方式,有兴趣可以留言讨论一下。

当然,datetime类型也是可以用这个方式的:

declare @test datetime
set @test=getdate()
if(LEN(@test) >0)
 begin
 print ‘true‘
 end
 else
 begin
 print ‘false‘
 end

结果为true.


declare @test datetime
set @test=null
if(LEN(@test) >0)
 begin
 print ‘true‘
 end
 else
 begin
 print ‘false‘
 end

结果为false.
 


 

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!