架构师之mybatis-----update 带case when 针对多种情况更新

1.前言.
如题.
2. 代码.


close=";end;" separator=";">
update Test

a =(case when (a is null) then #{list.parm1}
else a+#{list.parm1} end)

where b= #{list.parm2}





该功能实现如果a为空,则也同样赋值,否则累加. parm1,parm2为list的参数,ctrl+f往下翻页 .
推荐把case when改为如下:

a =NVL(a,0)+#{list.parm1}

你可能感兴趣的:(架构师之mybatis-----update 带case when 针对多种情况更新)