<if test=" 변수 in {null, ''} ">
<if test=" 변수 not in {null, ''} ">
와 같이 사용
- NumberformatException / if /문자 1글자 비교 / equals / 이슈 | MyBatis
https://cofs.tistory.com/m/96
- mybatis if문 문자열 비교
<select id="get" parameterType="map" resultMap="resultMap">
SELECT *
FROM 테이블명
<where>
<if test='파라미터 != null and 파라미터.equals("A".toString())'>
AND 필드명 = #{파라미터}
</if>
OR
<if test="파라미터 != null and 파라미터.equals('A'.toString())">
AND 필드명 = #{파라미터}
</if>
</where>
</select>
https://xshine.tistory.com/249
- boolean 비교
<if test="파라미터 == true" >
…………………
</if>
'mybatis' 카테고리의 다른 글
spring boot mybatis 적용 (java configuration) (0) | 2020.04.20 |
---|---|
mybatis logging 추가 (0) | 2020.04.13 |
myBatis java configuration (0) | 2018.12.20 |
mybatis 내장 cache (0) | 2018.11.15 |
쿼리에서 특정 문자 제거 (0) | 2016.10.27 |