mybatis入门-2 动态sql

MyBatis 的强大特性之一便是它的动态 SQL。 闲话少说,代码撸起来!

IF 这基本上是where的必需品了

public interface BlogMapper {
  //这个地方需要注解 @Param 对这个参数进行命名,要不然if的时候获取不到参数名称
    List<Blog> selectByTitle(@Param("title") String title);

}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- 绑定Dao接口,之后,你可以不用写接口实现类,
mybatis会通过与id同名的接口自动帮你找到对应要执行的SQL语句 -->
<mapper namespace="cm.mbs.dao.BlogMapper">

    <!--模糊查询的时候三种写法任选其一就可以了-->
    <select id="selectByTitle" resultType="Blog">
        select * from blog where 1=1
        <if test="title != null and title.trim() != ‘‘">
            and title like concat(‘%‘,#{title},‘%‘)
        </if>
        <!--<if test="title != null and title.trim() != ‘‘">
            and title like ‘%${title}%‘
        </if>-->
        <!--<if test="title != null and title.trim() != ‘‘">
            and title like "%"#{title}"%"
        </if>-->
    </select>

</mapper>

choose, when, otherwise

有时我们不想应用到所有的条件语句,而只想从中择其一项。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句。

List<Blog> selectByExample(Blog blog);
<select id="selectByExample" resultType="Blog">
        select * from blog where 1=1
        <choose>
            <when test="title != null and title.trim() != ‘‘">
                and title like concat(‘%‘,#{title},‘%‘)
            </when>
            <when test="state != null and state.trim() != ‘‘">
                and state like concat(‘%‘,#{state},"%")
            </when>
            <otherwise>
                and featured = 1
            </otherwise>
        </choose>
</select>

trim, where, set

where这个标签会自动的为你去出第一个条件前面的and|or 这样就不会出错了。例如:

<select id="selectWhere" resultType="Blog">
        select * from blog
        <where>
            <if test="title != null and title.trim() != ‘‘">
                and title like concat(‘%‘,#{title},‘%‘)
            </if>
            <if test="state != null and state.trim() != ‘‘">
                and state like concat(‘%‘,#{state},"%")
            </if>
        </where>
    </select>

where 元素只会在至少有一个子元素的条件返回 SQL 子句的情况下才去插入“WHERE”子句。而且,若语句的开头为“AND”或“OR”,where 元素也会将它们去除。

如果 where 元素没有按正常套路出牌,我们可以通过自定义 trim 元素来定制 where 元素的功能。比如,和 where 元素等价的自定义 trim 元素为:

<trim prefix="WHERE" prefixOverrides="AND |OR ">
  ...
</trim>

set标签会自动的为我们忽略掉最后一个逗号例如:

Integer updateBlog(Blog blog);
<update id="updateBlog" parameterType="Blog" >
        update blog
        <set>
            <if test="title != null">title = #{title},</if>
            <if test="state != null">state = #{state},</if>
        </set>
        where id = #{id}
    </update>

这里会只能的为你忽略掉最后的一个逗号防止出错

foreach

动态 SQL 的另外一个常用的操作需求是对一个集合进行遍历,通常是在构建 IN 条件语句的时候。比如:

List<Blog> selectInAuthorId(String[] arr);
<select id="selectInAuthorId" resultType="Blog">
        select * from blog where authorId in
        <foreach collection="array" item="id" open="(" close=")" separator=",">
            #{id}
        </foreach>
    </select>

注意 collection这个属性最容易出错了,一般这个属性表示的是你传过来的容器是什么,如果是数组,那么你就可以写成 array 是list 就可以写成 list 是 map 就可以写成 map 有的时候你会看到同行写的代码是直接引用注解中的参数名字 ,这样mybatis会忽略类型,按名字引入。这个时候要使用@param:

public User queryUserByParams(@Param("id") Integer id, @Param("userName") String userName);

原文地址:https://www.cnblogs.com/L-o-g-i-c/p/11751850.html

时间: 2024-10-07 06:44:22

mybatis入门-2 动态sql的相关文章

mybatis入门基础----动态SQL

原文:http://www.cnblogs.com/selene/p/4613035.html 阅读目录 一:动态SQL 二:SQL片段 三:foreach 回到顶部 一:动态SQL 1.1.定义 mybatis核心对sql语句进行灵活操作,通过表达式进行判断,对sql进行灵活拼接.组装. 1.2.案例需求 用户信息综合查询列表这个statement的定义使用动态sql,对查询条件进行判断,如果输入参数不为空才进行查询拼接. 1.3.UserMapper.xml 1 <!-- 用户信息综合查询

Mybatis使用之动态SQL语句

Mybatis使用之动态SQL语句 一:简介 Mybatis动态SQL语句可帮助我们根据需要动态拼接SQL语句.主要在配置文件中使用<where> <if><choose><when><otherwise> <set> <trim><foreach>标签来实现. 二:具体使用方式 2.1 where 2.1.1 功能 语句的作用主要是简化SQL语句中where中的条件判断,where元素的作用是会在写入wher

Mybatis框架之动态SQL书写方式小结

动态SQL简介 动态SQL是Mybatis框架中强大特性之一.在一些组合查询页面,需要根据用户输入的查询条件生成不同的查询SQL,这在JDBC或其他相似框架中需要在代码中拼写SQL,经常容易出错,在Mybatis框架中可以解决这种问题. 使用动态SQL元素与JSTL相似,它允许我们在XML中构建不同的SQL语句.常用元素为: 判断元素:if,choose 关键字元素:where,set,trim 循环元素:foreach if元素 if元素是简单的条件判断逻辑,满足指定条件时追加if元素内的SQ

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; //... }

Mybatis学习之动态sql语句(7)

Mybatis 的动态sql语句是基于OGNL表达式的.可以方便的在 sql 语句中实现某些逻辑. 总体说来mybatis 动态SQL 语句主要有以下几类: 1. if 语句 (简单的条件判断) 2. choose (when,otherwize) ,相当于java 语言中的 switch ,与 jstl 中的choose 很类似. 3. trim (对包含的内容加上 prefix,或者 suffix 等,前缀,后缀) 4. where (主要是用来简化sql语句中where条件判断的,能智能的

6.Mybatis中的动态Sql和Sql片段(Mybatis的一个核心)

动态Sql是Mybatis的核心,就是对我们的sql语句进行灵活的操作,他可以通过表达式,对sql语句进行判断,然后对其进行灵活的拼接和组装.可以简单的说成Mybatis中可以动态去的判断需不需要某些东西. 动态Sql主要有以下类型: if choose,when,otherwise trim,where,set foreach 这里主要介绍几个常见的where  if  foreach,直接贴代码了 1.where 这里的where有一个好处就是在拼接成功的时候,会自动去掉第一个and 2.i

mybatis学习之动态sql

mybatis的动态sql语句很强大,在mapper映射文件中使用简单的标签即可实现该效果,下面一个个记录: 1.select查询 简单的select类似如下: <select id="findById" resultMap="StudentResult" parameterType="Integer"> select * from t_student where id = #{id} </select> 1)if(常用于

mybatis 详解------动态SQL

目录 1.动态SQL:if 语句 2.动态SQL:if+where 语句 3.动态SQL:if+set 语句 4.动态SQL:choose(when,otherwise) 语句 5.动态SQL:trim 语句 6.动态SQL: SQL 片段 7.动态SQL: foreach 语句 8.总结 前面几篇博客我们通过实例讲解了用mybatis对一张表进行的CRUD操作,但是我们发现写的 SQL 语句都比较简单,如果有比较复杂的业务,我们需要写复杂的 SQL 语句,往往需要拼接,而拼接 SQL ,稍微不

MyBatis进阶使用——动态SQL

MyBatis的强大特性之一就是它的动态SQL.如果你有使用JDBC或者其他类似框架的经验,你一定会体会到根据不同条件拼接SQL语句的痛苦.然而利用动态SQL这一特性可以彻底摆脱这一痛苦 MyBatis精简了元素种类,在MyBatis3中,我们只需要学习以下4种元素: if choose(when,otherwise) trim(where,set) foreach if 动态SQL通常要做的事情就是根据条件包含where子句的一部分,比如: <select id="findActiveB