개발자의 끄적끄적

[iBatis] 동적쿼리 조건문 [펌] 본문

개발/sql

[iBatis] 동적쿼리 조건문 [펌]

효벨 2019. 12. 3. 02:00
728x90
반응형

[iBatis] 동적쿼리 조건문 [펌]

 

 

 

TestCondition의 값에 따라 where절 조건문 동적 생성.

 

 

 

SELECT ...

FROM ...

WHERE 1=1

<isNotEmpty property="TestCondition" prepend="AND">

<isEqual property="TestCondition" compareValue="A">

--TestCondition의 값이 A일 때 처리

</isEqual>

<isEqual property="TestCondition" compareValue="B">

--TestCondition의 값이 B일 때 처리

</isEqual>

</isNotEmpty>



출처: https://smoh.tistory.com/182 [Simple is Beautiful.]

반응형
Comments