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 &gt;= #{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 &gt;= #{conds.startPos,jdbcType=BIGINT}
  </if>
  <if test="conds.endPos!=null">
  and end_pos &lt;= #{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>
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.만약 잘못 이 있 거나 완전히 고려 하지 않 은 부분 이 있다 면 아낌없이 가르침 을 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기