首页 > 代码库 > Mybatis学习笔记-动态SQL与模糊查询
Mybatis学习笔记-动态SQL与模糊查询
需求:实现多条件查询用户(姓名模糊匹配, 年龄在指定的最小值到最大值之间)
User.java实体类
public class User { private int id; private String name; private int age; //... }
ConditionUser.java
public class ConditionUser { private String name; private int minAge; private int maxAge; //... }
<!-- 实现多条件查询用户(姓名模糊匹配, 年龄在指定的最小值到最大值之间) 类似jstl表达式 --> <select id="getUser" parameterType="com.mybatis.test05.ConditionUser" resultType="com.mybatis.test05.User"> select * from d_user where <if test=‘name != "%null%"‘> name like #{name} and </if> age between #{minAge} and #{maxAge} </select>
测试
SqlSessionFactory factory = MybatisUtil.getFactory(); SqlSession session = factory.openSession(); String statement = "com.mybatis.test05.userMapper.getUser"; String name = "o"; name = null; ConditionUser parameter = new ConditionUser("%"+name+"%", 13, 18); List<User> list = session.selectList(statement, parameter); System.out.println(list); session.close();
MyBatis中可用的动态SQL标签
if
choose (when otherwise)
trim (where set)
foreach
本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/1559302
Mybatis学习笔记-动态SQL与模糊查询
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。