my batis 문자열 을 분할 하고 순환 하여 in 여러 매개 변수 작업 을 실현 합 니 다.

mybatis 문자열 분할 및 순환,in 여러 매개 변수 구현
mybatis xml 코드:

  <select id="selectInXh" resultMap="BaseResultMap" parameterType="java.lang.String">
    select *
    from carinfo
    where
    xh in
 <if test="param1 != null and param1 != ''">
  <foreach item="item" index="index" collection="param1.split(',')" open="(" separator="," close=")">
   #{item}
  </foreach>
 </if>
  </select>
mybatis sql 인쇄:

==>  Preparing: select * from carinfo where xh in ( ? , ? ) 
==> Parameters: 1(String), 2(String)
my batis 다 중 매개 변수 사용 방법 및 그 중 일부 매개 변 수 는 여러 값 으로 in 조 회 를 사용 합 니 다.
1.매개 변수 가 하나 일 때 매개 변수 유형 은 List 입 니 다.

List<AnalysisInfo> listInfo(@Param("orderIds") List<Integer> orderIds);
인자 이름 을"orderIds"로 바 꾸 었 습 니 다.따라서 아래 foreach 에서 collection="orderIds",이름 을 바 꾸 지 않 으 면 foreach 에서 collection="list"

<select id="listInfo" resultType="com.ieou.retail.module.H5.dto.AnalysisInfo">
       select materials_name as materialsName,sum(num) as totalNum,
       sum(price) as totalSale
       from sales_order_detail
       where shipment_result = 'SUCCESS' and refunds_time is null
       and sales_order_id in
       <foreach collection="orderIds" index="index" item="item" open="(" separator="," close=")">
           #{item}
      </foreach>
      group by materials_id order by totalNum desc limit 5
  </select>
2.매개 변수 가 하나 밖 에 없 을 때 매개 변수 유형 은 Array 입 니 다.

List<AnalysisInfo> listInfo(Long[] orderIds);
매개 변수 형식 이 Array 라면 collection 속성 은 array 입 니 다.

<select id="listInfo" resultType="com.ieou.retail.module.H5.dto.AnalysisInfo">
       select materials_name as materialsName,sum(num) as totalNum,
       sum(price) as totalSale
       from sales_order_detail
       where shipment_result = 'SUCCESS' and refunds_time is null
       and sales_order_id in
       <foreach collection="array" index="index" item="item" open="(" separator="," close=")">
           #{item}
      </foreach>
      group by materials_id order by totalNum desc limit 5
  </select>
3.조회 의 매개 변수 가 여러 개 있 을 때,예 를 들 어

List<AnalysisInfo> listInfo(List<Integer> orderIds, Integer num);
이 경우 맵 방식 을 사용 해 야 합 니 다.collection 속성 에서 이름 을 지정 할 수 있 습 니 다.

Map<String, Object> params = new HashMap<>();
params.put("orderIds",orderIds);
params.put("num",num);
List<AnalysisInfo> listInfo(params);
XML 은 다음 과 같 습 니 다.

<select id="listInfo" resultType="com.ieou.retail.module.H5.dto.AnalysisInfo">
    select materials_name as materialsName,sum(num) as totalNum,
    sum(price) as totalSale
    from sales_order_detail
    where shipment_result = 'SUCCESS' and refunds_time is null and num = #{num}
    and sales_order_id in
    <foreach collection="orderIds" index="index" item="item" open="(" separator="," close=")">
        #{item}
    </foreach>
    group by materials_id order by totalNum desc limit 5
</select>
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기