【sql】sql查询is not null速度慢的一种处理方式
程序员文章站
2023-02-20 23:20:05
数据库连表查询中的nvarchar类型字段,tb_Users.Certificates is not null条件,is not null 会导致查询速度慢很多(因为和“=”号条件遍历方式不一样)。 替换为 “LEN(tb_Users.Certificates) >0”,利用 Users.Certi ......
数据库连表查询中的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.
原因:
使用len(tb_users.certificates) >0只有一个物理查找执行:
用is not null 多了物理扫描,物理查找执行次数也多了好多倍
上一篇: centos7防火墙
下一篇: 说框架设计思路
推荐阅读
-
SQL 复合查询条件(AND,OR,NOT)对NULL值的处理方法
-
SQL 复合查询条件(AND,OR,NOT)对NULL值的处理方法
-
【sql】sql查询is not null速度慢的一种处理方式
-
在SQL Server中,索引是一种增强式的存在,这意味着,即使没有索引,SQL Server仍然可以实现应有的功能。但索引可以在大多数情况下大大提升查询性能,
-
SQL 复合查询条件(AND,OR,NOT)对NULL值的处理方法
-
关于linq语句与sql语句查询条件==null处理的奇妙现象
-
查询速度慢的原因 SQL ServerSQL应用服务器设计模式网络应用
-
查询速度慢的原因 SQL ServerSQL应用服务器设计模式网络应用
-
sql语句中字符串分解查询的一种解决方法。
-
【sql】sql查询is not null速度慢的一种处理方式