关于 mapper.xml 中 sql使用 in 执行无效的原因

1.SQL

	<select id="getList" resultType="com.xxx.xxx.front.response.ConvertList">
        select
        	*
        from
        	store_product
        where
        	1=1
        <if test="cateIdList != null">
            and cate_id in
            <foreach collection="cateIdList" item="cateIdList" index="index" open="(" separator="," close=")">
                #{cateIdList}
            foreach>
        if>
    select>

2.最终执行的sql拼接如下
  and cate_id in (‘753’,‘753’)

3.解决方案
  不知道是不是数据库版本问题,in ('753','753') 这样的sql在数据库执行之后是查不到任何数据的,即便cate_id本身的确是字符串。只能将入参改成 Integer 最终拼接为 in (753,753) 才能查出数据

你可能感兴趣的:(Java,sql,xml,数据库,java)