首页 > 数据库 >Mybatis动态SQL语句大全

Mybatis动态SQL语句大全

时间:2023-03-03 09:03:37浏览次数:33  
标签:语句 元素 title author SQL Mybatis where 大全

读完这篇文章里你能收获到

  • Mybatis动态SQL语句大全
  • Mybatis中如何定义变量
  • Mybatis中如何提取公共的SQL片段
1. If 语句 需求:根据作者名字和博客名字来查询博客!如果作者名字为空,那么只根据博客名字查询,反之,则根据作者名来查询 <!--需求1: 根据作者名字和博客名字来查询博客! 如果作者名字为空,那么只根据博客名字查询,反之,则根据作者名来查询 select * from blog where title = #{title} and author = #{author} --> <select id="queryBlogIf" parameterType="map" resultType="blog">  select * from blog where  <if test="title != null">   title = #{title}  </if>  <if test="author != null">   and author = #{author}  </if> </select> 这样写我们可以看到,如果 author 等于 null,那么查询语句为 select * from user where title=#{title},但是如果title为空呢?那么查询语句为 select * from user where and author=#{author},这是错误的SQL 语句,如何解决呢?请看下面的 where 语句! 2. Where语句 修改上面的SQL语句: <select id="queryBlogIf" parameterType="map" resultType="blog">  select * from blog  <where>   <if test="title != null">    title = #{title}   </if>   <if test="author != null">    and author = #{author}   </if>  </where> </select> where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。 如果 where 元素与你期望的不太一样,你也可以通过自定义 trim 元素来定制 where 元素的功能。 2.1 和 where 元素等价的自定义 trim 元素 <trim prefix="WHERE" prefixOverrides="AND |OR ">   ... </trim> 3. Set语句 同理,上面的对于查询 SQL 语句包含 where 关键字,如果在进行更新操作的时候,含有 set 关键词,我们怎么处理呢? <!--注意set是用的逗号隔开--> <update id="updateBlog" parameterType="map">  update blog  <set>   <if test="title != null">    title = #{title},   </if>   <if test="author != null">    author = #{author}   </if>  </set>  where id = #{id}; </update> 这个例子中,set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的) 3.1 与 set 元素等价的自定义 trim 元素 <trim prefix="SET" suffixOverrides=",">   ... </trim> 4. Choose语句 有时候,我们不想用到所有的查询条件,只想选择其中的一个,查询条件有一个满足即可,使用 choose 标签可以解决此类问题,类似于 Java 的 switch 语句 <select id="queryBlogChoose" parameterType="map" resultType="blog">  select * from blog  <where>   <choose>    <when test="title != null">     title = #{title}    </when>    <when test="author != null">     and author = #{author}    </when>    <otherwise>     and views = #{views}    </otherwise>   </choose>  </where> </select> 5. Foreach语句 将数据库中前三个数据的id修改为1,2,3; 需求:我们需要查询 blog 表中 id 分别为1,2,3的博客信息 <select id="queryBlogForeach" parameterType="map" resultType="blog">  select * from blog  <where>   <!--   collection:指定输入对象中的集合属性   item:每次遍历生成的对象   open:开始遍历时的拼接字符串   close:结束时拼接的字符串   separator:遍历对象之间需要拼接的字符串   select * from blog where 1=1 and (id=1 or id=2 or id=3)   -->   <foreach collection="ids" item="id" open="and (" close=")"   separator="or">    id=#{id}   </foreach>  </where> </select> 6. SQL片段 有时候可能某个 sql 语句我们用的特别多,为了增加代码的重用性,简化代码,我们需要将这些代码抽取出来,然后使用时直接调用。 提取SQL片段: <sql id="if-title-author">  <if test="title != null">   title = #{title}  </if>  <if test="author != null">   and author = #{author}  </if> </sql> 引用SQL片段: <select id="queryBlogIf" parameterType="map" resultType="blog">  select * from blog  <where>   <!-- 引用 sql 片段,如果refid 指定的不在本文件中,那么需要在前面加上 namespace-->   <include refid="if-title-author"></include>   <!-- 在这里还可以引用其他的 sql 片段 -->  </where> </select> 注意:
  • 最好基于 单表来定义 sql 片段,提高片段的可重用性
  • 在 sql 片段中不要包括 where
7. Bind元素 bind 元素允许你在 OGNL 表达式以外创建一个变量,并将其绑定到当前的上下文。比如: <select id="selectBlogsLike" resultType="Blog">   <bind name="pattern" value="'%' + _parameter.getTitle() + '%'" />   SELECT * FROM BLOG   WHERE title LIKE #{pattern} </select>  

标签:语句,元素,title,author,SQL,Mybatis,where,大全
From: https://www.cnblogs.com/ht-privete-logs/p/17125411.html

相关文章

  • MySQL优化
    总结一下常见的mysql优化方案1.提高Type的级别最好是使用内存表级别为system最差的是All2.尽量不使用函数3.尽量不适用表达式4.选择索引尽量选择接近1的字段作为......
  • mysql在开始与结束时间过滤出有效的价格且结束时间可以为空
    背景在商品配置中设置有售卖时间,同一个商品可以设置多组不同的售卖时间,其中开始时间必填,结束时间可以不填,但是同一时刻只会有一个正在生效的时间区间。现在要求我们针对......
  • Android Studio 之连接mysql实现添加功能
    昨天经过几个小时的奋斗,终于是连接上了mysql说实话过程十分艰辛,包括查ip换网络改权限改数据库的表改网络等等之后也尝试过在自己电脑上下另一个版本的mysql但是都以......
  • RecycleView+Recycle.Adapter<Holder>+SQLite增删改查+共享数据+IO流文件保存
    首先是本地文件进行读写操作,具体实现如下:          通过文件字节输入输出流会把文件保存至data/data/files文件夹下面   具体使用如下所示:op......
  • C#-EF Core使用MySQL数据库
    简介EntityFrameworkCore(EFCore)是微软推荐的基于.NETCore的应用程序数据访问技术。开源,轻量级,可扩展并且支持跨平台开发。EFCore是一种对象关系映射器(ORM),通过应用......
  • mybatis处理一对多的映射关系
    实体类packageorg.example.entity;importjava.util.List;publicclassDept{privateIntegerdeptId;privateStringdeptName;privateList<Emp>......
  • mysql数据库字符集和排序规则
    一般而言,我们可能选择utf8mb4这个字符集,而不选择utf8.这个是因为MySQL的utf8并不是真正的UTF8字符集,MySQL的utf8字符编码只有三个字节,节省空间但不能表达全部的UTF-8,只能......
  • MyBatis_09(逆向工程)
    MyBatis的逆向工程正向工程:先创建Java实体类,由框架负责根据实体类生成数据库表。Hibernate是支持正向工程的逆向工程:先创建数据库表,由框架负责根据数据库表,反向生成......
  • mybatis懒加载
    mybatis懒加载全局配置<settings><settingname="mapUnderscoreToCamelCase"value="true"/><!--开启懒加载(开启延迟加载)--><settingn......
  • Mybatis学习_03_配置学习
    Mybatis学习_03MyBatis的配置文件包含了会深深影响MyBatis行为的设置和属性信息。1、环境配置(environments)MyBatis可以配置成适应多种环境,这种机制有助于将SQL映......