我是靠谱客的博主 慈祥水壶,最近开发中收集的这篇文章主要介绍【mybatis】Mybatis中SQL使用in查询List或数组,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.mybatis in 查询List时

List<String> list=new ArrayList<String>();
...;//向list中填装参数值
//list为必传参数集时,判断如果该list为空,没有参数值,则填装一个-1或其他保证该表不会查询出的参数值;
//如果list为非必传参数集时,则下面if判断可以省去;
if(list.size()==0){
list.add("-1");
}
HashMap<String,Object> params=new HashMap<String,Object>();
params.put("list",list);
List<HashMap<String,Object>> rList=dao.queryParams(params);

mybatis中相应sql写法示例如下:

<select id="queryParams" resultType="HashMap">
select * from cga_case a
<where>
<if test="list != null and list.size()>0">//注意:此处不能写list!=''要写成list.size()>0,不然会报错
AND a.case_id IN
<foreach item="item" index="index" collection="list" open="("
close=")" separator=",">
#{item}
</foreach>
</if>
</where>
</select>

2.mybatis in查询 数组时

String[] arr=new String[]{...};
//arr为必传参数集时,判断如果该arr为空,没有参数值,则填装一个-1或其他保证该表不会查询出数据的参数值;
//如果arr为非必传参数集时,则下面if判断可以省去;
if(arr.length==0){
arr=new String[]{"-1"};
}
HashMap<String,Object> params=new HashMap<String,Object>();
params.put("arr",arr);
List<HashMap<String,Object>> rList=dao.queryParams(params);

mybatis中相应sql写法示例如下:

<select id="queryParams" resultType="HashMap">
select * from cga_case a
<where>
<if test="arr != null and arr.length>0">
AND a.case_id IN
<foreach item="item" index="index" collection="arr" open="("
close=")" separator=",">
#{item}
</foreach>
</if>
</where>
</select>

 

最后

以上就是慈祥水壶为你收集整理的【mybatis】Mybatis中SQL使用in查询List或数组的全部内容,希望文章能够帮你解决【mybatis】Mybatis中SQL使用in查询List或数组所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(79)

评论列表共有 0 条评论

立即
投稿
返回
顶部