我必须根据 4 个输入变量在存储过程中动态准备更新语句。
假设 take 、 和test
是test1
输入参数。test2
test3
然后我必须准备像这样的查询,请帮助我构建这个:
update emp
set empid='1'
where test = test
and test1 = test1
and test2 = test2
and test3 = test3
假设如果 test 和 test1 值为 null 并且 test2 和 test3 值不为 null ,那么我可以准备如下更新语句
update emp
set empid='1'
where test is null
and test1 is null
and test2 = test2
and test3 = test3