같은 쿼리를 다른 쿼리에서 일부분 사용한다거나 그렇게 반복이 될 때
다음과 같이 사용하면 좋다
... <mapper> .... <sql id="a"> SELECT * FROM TABLE1 </sql> <select id="getList" resultType="hashmap"> <include refid="a" /> WHRE name = #{value} </select> </mapper> |
'개발 > Database' 카테고리의 다른 글
MyBatis] There is no getter for property named.. error (0) | 2012.09.07 |
---|---|
MyBatis/iBatis] 방금 INSERT 된 Key 가져오기 (3) | 2012.09.05 |
MyBatis] 쿼리에서 특정 문자 제거 (if 사용시) (3) | 2012.08.28 |
MySql] Insert Select 문 (1) | 2012.08.28 |
[MySql] 같은 컬럼의 행들에 한방에 update 하기 (4) | 2012.08.07 |