本文介绍了存储过程中的空值参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我对存储过程中的查询有疑问.
当我的where子句中使用的参数@parm为null时,语法应为

 列名 in ( otherTable中选择 idfield 
如果@parm用值填充,则语法应为:

  and 列名=  @ parm  



解决方案




Hello everyone,

I have a question about a query in a stored procedure.
When the used parmeter @parm is null in my where clause the syntax should be

and columnname in (select idfield from otherTable)


if the @parm is filled with a value the syntax should be:

and columnname = @parm



How to handle this problem in the where clause?

解决方案




这篇关于存储过程中的空值参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-12 03:17