mybatis in中超过1000个值解决办法(超简单)

众所周知sql中条件in的值是不能超过1000个的,而mybatis可以使用动态sql拼接的方式绕开这个限制,网上看了很多例子,我感觉都不太好理解,下面介绍一个超简单的例子。

 
  1. select * from user_info
  2. where 1 = 1
  3. <if test="userList!= null and userList.size() > 0">
  4. and (userId in
  5. <foreach collection="userList" open="(" close=")" separator="," item="userId" index="index">
  6. //只需在原基础上加一个if条件,最外面加上一对括号就可以了
  7. <if test="index != 0 and index % 999 == 0">
  8. #{userId}) or userId in (
  9. </if>
  10. #{userId}
  11. </foreach>
  12. )
  13. </if>
 
  • 原来没加if条件的情况,in超过1000行:

        and (userId in (1,2,3,4,5...998,999,1000,1001...))

  • 加上if条件后,每隔999个位置插入一个#{userId}) or userId in (分割成两个in:

        and (userId in (1,2,3,4,5...998,999) or userId in (999,1000,1001...))

虽然in太多的值会导致sql性能堪忧,但有时候身不由己,没有别的办法的时候也只能这么干了。

posted @ 2024-10-24 09:32  CharyGao  阅读(85)  评论(0编辑  收藏  举报