1. 程式人生 > >在ibatis中做等值判斷(if-else)

在ibatis中做等值判斷(if-else)

如果ziduan2的zhide值是abc
<isEqual property="ziduan2" compareValue="abc">
            update t_wf_dcasemsg set ziduan1=#ziduan1#
            where case_no = #case_no#
</isEqual>
如果ziduan2的值不是是abc
<isNotEqual property="ziduan2" compareValue="abc">
            update t_wf_dcasemsg set ziduan1=#ziduan1#,ziduan2=#ziduan2#
where case_no = #case_no# </isNotEqual>

這樣就在ibatis的對映檔案中實現了if-else判斷