mybatis查询sql中in条件使用(foreach)

foreach属性主要有item,index,collection,open,separator,close。
1、item表示集合中每一个元素进行迭代时的别名,
2、index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,
3、open表示该语句以什么开始,
4、separator表示在每次进行迭代之间以什么符号作为分隔符,
5、close表示以什么结束,
6、collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
a、如果传入的是单参数且参数类型是一个List的时候,collection属性值为list .
b、如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array .
c、如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key.

<select id="findBy" resultMap="RfCustomerMemMap" parameterType="java.util.Map">  
    SELECT  
    <include refid="Column"/>  
    FROM rfl_customer_mem a LEFT JOIN rfl_loan b ON a.member_no = b.loan_member_no  
    WHERE a.member_no = #{memberNo} AND b.status IN  
    <foreach collection="status" index="index" item="item" open="(" separator="," close=")">  
        #{item}  
    </foreach>  
    <if test="name != null and name != ''">  
        AND name = #{name}  
    </if>  
    <if test="idNumber != null and idNumber != ''">  
        AND id_number = #{idNumber}  
    </if>  
    <if test="mobileNo != null and mobileNo != ''">  
        AND mobile_no = #{mobileNo}  
    </if>  
    <if test="loanNo != null and loanNo != ''">  
        AND loan_no = #{loanNo}  
    </if>  
    order by a.id DESC  
    <if test="offset > -1 and rows > -1">  
        limit #{offset},#{limit}  
    </if>  
</select>  

java代码

public List<LoanMerchantMemEntity> findMerchantMemBy(String merchantName, String merchantNo, String socialCreditCode, String loanNo, int offset, int limit) {  
        List<LoanMerchantMemEntity> list = new ArrayList<LoanMerchantMemEntity>();  
        Map<String, Object> filter = new HashMap<String, Object>();  

        filter.put("merchantName", merchantName);  
        filter.put("socialCreditCode", socialCreditCode);  
        filter.put("status", statsList());  
        filter.put("loanNo", loanNo);  
        filter.put("offset", offset);  
        filter.put("limit", limit);  
        filter.put("merchantNo", merchantNo);  

        try {  
            List<LoanMerchantMemEntity> row = loanMerchantMemDao.findBy(filter);  
        } catch (Exception e) {  
            LOGGER.error(filter, "查询企业会员信息异常", e);  
        }  
        return list;  
    }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值