검색결과 리스트
글
/////////////////////////
///// MyBatis★★★
/////////////////////////
참조 : http://mybatis.github.io/mybatis-3/ko/index.html
<sqlMap></sqlMap>
<select id="" parameterType="" resultType=""></select>
<update id=""></update>
<delete id=""></delete>
<insert id=""></insert>
<sql id=""></sql>
<include refid="" />
///// resultMap
<resultMap>
///// 동적 SQL
//
<if test=""></if>
//
<choose>
<when test=""></when>
<when test=""></when>
<otherwise></otherwise>
</choose>
//
<resultMap id="" type=""></resultMap>
//
<bind name="pattern" value="" />
//
<set></set>
//
<trim prefix="" suffixOverrides=""></trim>
///// ibatis에서 가능
<isEmpty property="">
<isNotEmpty property="">
<isNotNull property="">
<isEqual property="" compareValue="">
<isNotEqual property="" compareValue="">
<isLessThan
<isParameterPresent prepend="">
<iterate property="" open="" close="" conjunction="" ></iterate>
///// mybatis에서
<foreach open="" close="" separator="" ></foreach>