Mybatis学习笔记 3:Mybatis 多种条件查询

栏目: Java · 发布时间: 5年前

内容简介:模糊查询使用like,在配置文件中新建一个在这里要注意,要查询的子串和正则表达式之间的连接要使用concat函数连接,否则会报错。测试代码:

模糊查询使用like,在配置文件中新建一个 select 标签,根据 Sql 语法规则构建好查询语句。

<select id="likeSearch" parameterType="String" resultType="User">
		select * from user where user_name like concat('%',#{0},'%')
</select>
复制代码

在这里要注意,要查询的子串和正则表达式之间的连接要使用concat函数连接,否则会报错。

测试代码:

List<User> lu = session.selectList("likeSearch", "d");
for (User u : lu) {
    System.out.println(u.getUser_name());
    System.out.println(u.getUser_id());
    System.out.println(u.getUser_phone());
    System.out.println("------------------------");
}
复制代码

运行结果:

Mybatis学习笔记 3:Mybatis 多种条件查询

二、多条件查询

多条件查询就是构建查询语句时跟上一个and就可以了

<select id="multiSearch" parameterType="User" resultType="User">
		select * from user where user_name like concat('%', #{user_name}, '%') and user_id like concat('%', #{user_id}, '%')
	</select>
复制代码

在这里传递参数给Mybatis时参数类型可以写User类型,或者使用map类型

测试代码:

User u2 = new User();
u2.setUser_name("v");
u2.setUser_id("1");
List<User> lu = session.selectList("multiSearch", u2);

for (User u : lu) {
    System.out.println(u.getUser_name());
    System.out.println(u.getUser_id());
    System.out.println(u.getUser_phone());
    System.out.println("------------------------")
}
复制代码

运行结果:

Mybatis学习笔记 3:Mybatis 多种条件查询

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

We Are the Nerds

We Are the Nerds

Christine Lagorio-Chafkin / Hachette Books / 2018-10-2 / USD 18.30

Reddit hails itself as "the front page of the Internet." It's the third most-visited website in the United States--and yet, millions of Americans have no idea what it is. We Are the Nerds is an eng......一起来看看 《We Are the Nerds》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

html转js在线工具
html转js在线工具

html转js在线工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换