1. 程式人生 > >Mybatis中"if else"的寫法

Mybatis中"if else"的寫法

... test 數據庫 div highlight per 數據 直接 XML

在SSM框架中編寫mapper.xml的時候,需要對數據庫進行操作。在對數據庫操作的時候有時會遇到需要判斷字段內容的情況,如果只需要判斷字段滿足某個條件,那麽直接使用:

<if test="">
    //...
</if>

但是如果需要else操作的話可以使用以下語句:

<choose>
    <when test="">
        //...
    </when>
    <otherwise>
        //...
    </otherwise>
</choose>

  

Mybatis中"if else"的寫法