sql – 带/不带传递参数的条件存储过程

前端之家收集整理的这篇文章主要介绍了sql – 带/不带传递参数的条件存储过程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个存储过程,当作为参数传递时,应该返回整个表.但如果studentId通过,则返回她的详细信息.
像这样的东西
create procedure usp_GetStudents @studentId int = null
as
  if (@studentId = null)
    select * from Student
  else
    select * from Student where studentId = @studentId

产量

exec usp_GetStudents -- No records returned though there are records in the table


exec usp_GetStudents @studentId = null  -- No records returned


exec usp_GetStudents @studentId = 256  -- 1 entry returned

只是想知道返回表的所有条目的语法/逻辑是否有任何问题?

谢谢

解决方法

您正尝试使用=,a comparison operator测试null.如果您使用的是ANSI null,则对null的任何比较都为false.

其中@studentId是任何值(或null),以下表达式都是false:

@studentId = null  -- false
@studentId > null  -- false
@studentId >= null  -- false
@studentId < null  -- false
@studentId <= null  -- false
@studentId <> null -- false

因此,为了测试null,你必须使用一个特殊的谓词,is null,即:

@studentId is null
原文链接:https://www.f2er.com/mssql/79523.html

猜你在找的MsSQL相关文章