我创建了一个存储过程,当作为参数传递时,应该返回整个表.但如果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