很多程序员在实际开发中,经常遇到这种情况,列表上方有很多条件,包含下拉框,输入框等等,这些条件都可以不输入,如果我们需要写一个存储过程,很多条件挨个判断是否为空,且进行任意组合,任何一个开发人员都会疯的.闲话少说,接下来举例说明: create proc myproc @condition1 varchar(50)=null, @condition2 int=null, @condition3 bit as select col1,col2 from table where col3=isnul