스마트웹앱콘텐츠전문가/직장

[mybatis]동적 where

9D4U 2018. 3. 23. 10:21
728x90
반응형

동적 where


예시:


<select id="test">

SELECT * FROM TEST

<where>

<if test="a != null">

a = #{a}

</if>

<if test="b != null">

and b = #{b}

</if>

<if test="c != null">

     and c = #{c}

</if>

</where>

</select>








728x90