본문 바로가기
자바/Mybatis

자바 Mybatis 자주쓰는 조건문 if, case(choose)

by #무한동력 2020. 6. 12.
<choose>
       <when test='ISEXCEL != null and ISEXCEL.equals("Y")'>       
      </when>
      <otherwise>			
      </otherwise>
</choose>

<if test='ITEM_CD != null and !ITEM_CD.equals("")'>   
</if> 

 

댓글