gpt4 book ai didi

sql-server - SQL 检查变量中的空值

转载 作者:行者123 更新时间:2023-12-03 00:12:03 25 4
gpt4 key购买 nike

我试图将表值与可以为 null 的变量进行比较,但是由于我们不能将其等同于 null,因此这是不可比较的。

declare @test varchar(33) -- This can or cannot be NULL;
select * from [dbo].[ViewsConfiguration] where PolicyId= 139 and EventName= @test

这可以使用 switchif 来完成,但是需要寻找一种更优雅的方法来做到这一点。

最佳答案

您可以将两者与NULL进行比较:

DECLARE @test VARCHAR(33) 
SELECT *
FROM [dbo].[ViewsConfiguration]
WHERE PolicyId = 139
AND ( EventName = @testd
OR ( EventName IS NULL
AND @testd IS NULL
)
)

关于sql-server - SQL 检查变量中的空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29919072/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com