使用 IS NULL 或 Coalesce 将参数传递给 where 子句

编程入门 行业动态 更新时间:2024-10-09 19:17:15
本文介绍了使用 IS NULL 或 Coalesce 将参数传递给 where 子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想将参数 @CompanyID 传入 where 子句以过滤结果.但有时这个值可能是 null 所以我希望返回所有记录.我找到了两种方法,但不确定哪一种最安全.

I would like to pass in a parameter @CompanyID into a where clause to filter results. But sometimes this value may be null so I want all records to be returned. I have found two ways of doing this, but am not sure which one is the safest.

版本 1

SELECT ProductName, CompanyID FROM Products WHERE (@CompanyID IS NULL OR CompanyID = @CompanyID)

版本 2

SELECT ProductName, CompanyID FROM Products WHERE CompanyID = COALESCE(@CompanyID, CompanyID)

我发现第一个版本是最快的,但我也发现在其他表中使用类似的方法我得到了不同的结果集.我不太明白两者之间的区别.

I have found that the first version is the quickest, but I have also found in other tables using a similar method that I get different result sets back. I don't quite understand the different between the two.

谁能解释一下?

推荐答案

好吧,两个查询都在处理相同的两个场景 -在一种情况下,@CompanyID 包含一个值,并且在第二个 @CompanyID 中包含 NULL.

Well, both queries are handling the same two scenarios - In one scenario @CompanyID contains a value, and in the second @CompanyID contains NULL.

对于这两个查询,第一个场景将返回相同的结果集 - 因为如果 @CompanyId 包含一个值,两者都将返回 companyId = @CompanyId 的所有行,但是第一个查询可能会更快地返回它(在我的答案末尾有更多信息).

For both queries, the first scenario will return the same result set - since if @CompanyId contains a value, both will return all rows where companyId = @CompanyId, however the first query might return it faster (more on that at the end of my answer).

然而,第二种情况是查询开始表现不同.

The second scenario, however, is where the queries starts to behave differently.

首先,这就是你得到不同结果集的原因:

First, this is why you get different result sets:

结果集的差异

版本 1

WHERE (@CompanyID IS NULL OR CompanyID = @CompanyID)

当@CompanyID为空时,where子句不会过滤任何行,返回表中的所有记录.

When @CompanyID is null, the where clause will not filter out any rows whatsoever, and all the records in the table will be returned.

版本 2

WHERE CompanyID = COALESCE(@CompanyID, CompanyID)

当@CompanyID为null时,where子句会过滤掉CompanyID为null的所有行,因为null = null的结果> 实际上是 unknown - 任何带有 null = null 的查询都不会返回任何结果,除非 ANSI_NULLS 设置为 OFF(你真的不应该这样做,因为它已被弃用).

When @CompanyID is null, the where clause will filter out all the rows where CompanyID is null, since the result of null = null is actually unknown - and any query with null = null as it's where clause will return no results, unless ANSI_NULLS is set to OFF (which you really should not do since it's deprecated).

索引使用

您可能会从第一个版本中获得更快的结果,因为在 where 子句中的列上使用任何函数都会阻止 SQL Server 使用您在该列上可能拥有的任何索引.您可以在 这篇文章 MSSql 技巧.

You might get faster results from the first version, since the use of any function on a column in the where clause will prevent SQL Server from using any index that you might have on this column. You can read more about it on this article in MSSql Tips.

结论

版本 1 优于版本 2.即使您不想返回 companyId 为空的记录,最好写为 WHERE (@CompanyID IS NULL OR CompanyID = @CompanyID) AND CompanyID IS NOT NULL而不是使用第二个版本.

Version 1 is better than version 2. Even if you do not want to return records where companyId is null it's still better to write as WHERE (@CompanyID IS NULL OR CompanyID = @CompanyID) AND CompanyID IS NOT NULL than to use the second version.

更多推荐

使用 IS NULL 或 Coalesce 将参数传递给 where 子句

本文发布于:2023-07-21 07:23:57,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1175414.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:子句   参数   NULL   Coalesce

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!