my batis 에서 if else 를 사용 하여 판단 하 는 작업
<!-- id -->
<select id="checkItemsId" parameterType="pd" resultType="java.lang.Integer">
SELECT
i.itemsid
FROM pq_goods_items i
<where>
<!-- choose -->
<!-- <choose>
<when test="parentId !=0 ">parentTypeId=#{parentId}</when>
<when test="parentId==0">parentTypeId is null</when>
</choose> -->
<!-- if -->
<if test="color!=null">
i.personone=#{personone}
AND i.persontwo=#{persontwo}
AND i.color=#{color}
</if>
<if test="color==null">
i.personone=#{personone}
AND i.persontwo=#{persontwo}
AND i.color is null
</if>
</where>
</select>
주의해 야 할 것 은 where 탭 을 사용 한 후 sql 에 서 는 where 필드 를 사용 하지 않 고 조건 을 제한 합 니 다.판단 조건 이 여러 개의 중간 용 and 로 병렬 되 어 있다 면
<if test="color!=null and personone!=null">
추가:my baits 에서 if 여러 test 와 if else 분기 지원my baits 중 if 여러 test
<select id="selectByDynamicallyWithPage" parameterType="map" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from gene_polymorphism
<where>
diag_id = #{conds.diagId,jdbcType=INTEGER}
<if test="conds.chromesome!=null and conds.chromesome!=''">
and chromesome = #{conds.chromesome,jdbcType=VARCHAR}
</if>
<if test="conds.startPos!=null">
and start_pos >= #{conds.startPos,jdbcType=BIGINT}
</if>
</where>
</select>
if else 분기:
<select id="selectByDynamicallyWithPage" parameterType="map" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from gene_polymorphism
<where>
diag_id = #{conds.diagId,jdbcType=INTEGER}
<if test="conds.chromesome!=null">
and chromesome = #{conds.chromesome,jdbcType=VARCHAR}
</if>
<if test="conds.startPos!=null">
and start_pos >= #{conds.startPos,jdbcType=BIGINT}
</if>
<if test="conds.endPos!=null">
and end_pos <= #{conds.endPos,jdbcType=BIGINT}
</if>
<if test="conds.geneTypes!=null">
<!--and gene_type in-->
<!--<foreach collection="conds.geneTypes" open="(" close=")" item="item" separator="," >-->
<!--#{item,jdbcType=VARCHAR}-->
<!--</foreach>-->
and (
<foreach collection="conds.geneTypes" item="item" separator="or">
gene_type like CONCAT('%',CONCAT(#{item,jdbcType=VARCHAR}, '%'))
</foreach>
)
</if>
<if test="conds.geneChange!=null">
and gene_change like CONCAT('%',CONCAT(#{conds.geneChange,jdbcType=VARCHAR}, '%'))
</if>
</where>
order by
<trim suffixOverrides=",">
<choose>
<when test="conds.chromesomeSort!=null and conds.chromesomeSort=='asc'">
chromesome asc ,
</when>
<when test="conds.chromesomeSort!=null and conds.chromesomeSort=='desc'">
chromesome desc ,
</when>
</choose>
<choose>
<when test="conds.startPosSort!=null and conds.startPosSort=='asc'">
start_pos asc ,
</when>
<when test="conds.startPosSort!=null and conds.startPosSort=='desc'">
start_pos desc ,
</when>
<otherwise>
id desc
</otherwise>
</choose>
</trim>
limit #{startRow,jdbcType=INTEGER} ,#{pageSize,jdbcType=INTEGER}
<!-- order by id desc limit #{startRow,jdbcType=INTEGER} ,#{pageSize,jdbcType=INTEGER} -->
</select>
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.만약 잘못 이 있 거나 완전히 고려 하지 않 은 부분 이 있다 면 아낌없이 가르침 을 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MySQL/마이바티스 | 동적 쿼리 사용A라는 서비스에 해당하는 테이블을 조인하고 조회하는 데 사용됩니다. 나중에 공통화를 위해 B 및 C 서비스도 추가됩니다. A, B, C 서비스는 모두 단일 쿼리에서 작동할 수 있도록 공통화되어야 합니다. 테이블에 각...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.