打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Mybatis使用IN语句查询

一、简介

在SQL语法中如果我们想使用in的话直接可以像如下一样使用:

select * from HealthCoupon where useType in ( '4' , '3' )
但是如果在MyBatis中的使用in的话,像如下去做的话,肯定会报错:
  1. Map<String, Object> selectByUserId(@Param("useType") String useType)
  2. <select id="selectByUserId" resultMap="BaseResultMap" parameterType="java.lang.String">
  3. select * from HealthCoupon where useType in (#{useType,jdbcType=VARCHAR})
  4. </select>

其中useType="2,3";这样的写法,看似很简单,但是MyBatis不支持。。但是MyBatis中提供了foreach语句实现IN查询,foreach语法如下:

  1. foreach语句中, collection属性的参数类型可以使:List、数组、map集合
  2. ​ collection: 必须跟mapper.java中@Param标签指定的元素名一样
  3. ​ item: 表示在迭代过程中每一个元素的别名,可以随便起名,但是必须跟元素中的#{}里面的名称一样。
  4.    index:表示在迭代过程中每次迭代到的位置(下标)
  5.    open:前缀, sql语句中集合都必须用小括号()括起来
  6. ​ close:后缀
  7.    separator:分隔符,表示迭代时每个元素之间以什么分隔

正确的写法有以下几种写法:

(一)、selectByIdSet(List idList)

如果参数的类型是List, 则在使用时,collection属性要必须指定为 list

  1. List<User> selectByIdSet(List idList);
  2. <select id="selectByIdSet" resultMap="BaseResultMap">
  3. SELECT
  4. <include refid="Base_Column_List" />
  5. from t_user
  6. WHERE id IN
  7. <foreach collection="list" item="id" index="index" open="(" close=")" separator=",">
  8. #{id}
  9. </foreach>
  10. </select>

(二)、List<User> selectByIdSet(String[] idList)

如果参数的类型是Array,则在使用时,collection属性要必须指定为 array

  1. List<User> selectByIdSet(String[] idList);
  2. <select id="selectByIdSet" resultMap="BaseResultMap">
  3. SELECT
  4. <include refid="Base_Column_List" />
  5. from t_user
  6. WHERE id IN
  7. <foreach collection="array" item="id" index="index" open="(" close=")" separator=",">
  8. #{id}
  9. </foreach>
  10. </select>

(三)、参数有多个时

当查询的参数有多个时,有两种方式可以实现,一种是使用@Param("xxx")进行参数绑定,另一种可以通过Map来传参数。

3.1 @Param("xxx")方式

  1. List<User> selectByIdSet(@Param("name")String name, @Param("ids")String[] idList);
  2. <select id="selectByIdSet" resultMap="BaseResultMap">
  3. SELECT
  4. <include refid="Base_Column_List" />
  5. from t_user
  6. WHERE name=#{name,jdbcType=VARCHAR} and id IN
  7. <foreach collection="idList" item="id" index="index"
  8. open="(" close=")" separator=",">
  9. #{id}
  10. </foreach>
  11. </select>

3.2 Map方式

  1. Map<String, Object> params = new HashMap<String, Object>(2);
  2. params.put("name", name);
  3. params.put("idList", ids);
  4. mapper.selectByIdSet(params);
  5. <select id="selectByIdSet" resultMap="BaseResultMap">
  6. select
  7. <include refid="Base_Column_List" />
  8. from t_user where
  9. name = #{name}
  10. and ID in
  11. <foreach item="item" index="index" collection="idList" open="(" separator="," close=")">
  12. #{item}
  13. </foreach>
  14. </select>
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
mybatis sql语句配置
MyBatis动态Sql语句
MyBatis传入参数与parameterType
掌握Mybatis动态映射,我可是下了功夫的
Mybatis使用之参数传递
源码解读Mybatis List列表In查询实现的注意事项
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服