本文介绍了如何在条件SQL中处理一个强制参数和一个可选参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 大家好, 我在编写选择查询时遇到问题。 我写了一个存储过程需要两个arguements input1和input2, 其中input2可以为null。在我的存储过程中,我正在编写一个select querry(使用连接)以及应该满足以下条件的条件。 1.当input1和input2不为空时,给出结果(column1 = input1和column2 = input2)(结果应该同时匹配两个值) 2.Input1匹配且input2为空 - 返回结果匹配input1 3.Input1不匹配input2不为null,返回匹配输入2 请帮助我。解决方案 Hi All,I am having a problem in writing a select query .I have written a stored procedure which takes two arguements input1 and input2,where input2 can be null.In my stored procedure I am writing a select querry (which uses joins )and where condition which should ullfill below requirement.1.when input1 and input2 are not null ,give the result (column1=input1 and column2=input2) (Result should have both vaues matched)2.Input1 is matched and input2 is null-Return results for matched for input13.Input1 is not matched input2 is not null,Return matched for input2Please help me. 解决方案 这篇关于如何在条件SQL中处理一个强制参数和一个可选参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-20 08:53