Mybatis动态SQL foreach标签用法实例
程序员文章站
2022-03-27 12:47:44
需求:传入多个 id 查询用户信息,用下边两个 sql 实现:select * from users where username like '%张%' and (id =10 or id =89 o...
需求:传入多个 id 查询用户信息,用下边两个 sql 实现:
select * from users where username like '%张%' and (id =10 or id =89 or id=16)
select * from users where username like '%张%' and id in (10,89,16)
这样我们在进行范围查询时,就要将一个集合中的值,作为参数动态添加进来。
这样我们将如何进行参数的传递?
1、实体类
public class queryvo implements serializable { private list<integer> ids; public list<integer> getids() { return ids; } public void setids(list<integer> ids) { this.ids = ids; } }
2、持久层接口
/**
* 根据 id 集合查询用户
* @param vo
* @return
*/
list<user> findinids(queryvo vo);
3、映射文件
<!-- 查询所有用户在 id 的集合之中 --> <select id="findinids" resulttype="user" parametertype="queryvo"> <!-- select * from user where id in (1,2,3,4,5); --> select * from user <where> <if test="ids != null and ids.size() > 0"> <foreach collection="ids" open="id in ( " close=")" item="uid" separator=","> #{uid} </foreach> </if> </where> </select>
sql 语句:
select 字段 from user where id in (?)
foreach标签用于遍历集合,它的属性
- collection:代表要遍历的集合元素,注意编写时不要写#{}
- open:代表语句的开始部分
- close:代表结束部分
- item:代表遍历集合的每个元素,生成的变量名
- sperator:代表分隔符
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
MyBatis动态SQL标签用法实例详解
-
MyBatis从入门到精通(八):MyBatis动态Sql之foreach标签的用法
-
MyBatis——动态SQL语句——if标签和where标签复合使用
-
Mybatis中动态SQL,if,where,foreach的使用教程
-
MyBatis从入门到精通(七):MyBatis动态Sql之choose,where,set标签的用法
-
Mybatis动态SQL foreach标签用法实例
-
MyBatis动态SQL标签的用法详解
-
实例:MyBatis-Plus自定义联表分页查询-动态sql实现
-
mybatis之动态SQL(代码实例)
-
Mybatis 动态sql语句if标签和where标签结合巧妙使用