Mybatis中的动态SQL语句解析
这篇文章主要介绍了mybatis中的动态sql语句解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
mybatis中配置sql有两种方式,一种是利用xml 方式进行配置,一种是利用注解进行配置。
mybatis使用注解配置sql,但是由于配置功能受限,而且对于复杂的sql而言可读性很差,所以很少使用。
mybatis常用xml配置的方式,使用xml的几个简单的元素,便能完成动态sql的功能,大量的判断都可以在mybaties的映射xml里面配置,以达到许多需要大量代码才能实现的功能,大大减少了代码量,体现了mybatis的灵活、高度可配置性和维护性。
元素 | 作用 | 备注 |
if | 判断语句 | 单条件分支判断 |
choose(when,otherwise) | 相当于java中的switch和case语句 | 多条件分支判断 |
trim | 辅助元素,用于处理特定的sql拼装问题 | 用于处理sql拼装的问题 |
foreach | 循环语句 | 在in语句等列表条件常用 |
if元素
if元素是最常用的判断语句,相当于java中国的 if 语句,它常常与test属性联合使用。
<select id="findrole1" parametertype="string" resultmap="roleresultmap"> select role_no, role_name, note from t_role where 1=1 <if test="rolename != null and rolename !=''"> and role_name like concat('%', #{rolename}, '%') </if> </select>
当参数rolename传递进映射器时,如果参数不为空,则采取构造对 rolename 的模糊查询,否则就不要去构造这个条件。通过mybaties的 if 元素节省了许多拼接sql的工作,集中在 xml 里面维护。
choose、when、otherwise元素
如果在判断时有更多的选择,不只是两种选择,也就是类似switch...case...default...功能的语句。在映射的sql语句中,使用choose、when、otherwise元素承担这个功能。
<select id="findrole2" parametertype="role" resultmap="roleresultmap"> select role_no, role_name, note from t_role where 1=1 <choose> <when test="roleno != null and roleno !=''"> and role_no = #{roleno} </when> <when test="rolename != null and rolename !=''"> and role_name like concat('%', #{rolename}, '%') </when> <otherwise> and note is not null </otherwise> </choose> </select>
上述的场景就是:
首先,如果角色编号不为空,则只用角色编号作为条件查询。
当角色编号为空,而角色名称不为空,则使用角色名称作为条件进行模糊查询。
当角色编号和角色编号都为空,则要求角色备注不为空。
trim、where、set元素
在前面的sql语句中加入了“1=1”,这样可以实现其功能,但是有一个更好的实现,那就是使用where。当where元素里面的条件成立时,才会加入where这个sql关键字到组装的sql里面,否则不会加入。
<select id="findrole3" parametertype="role" resultmap="roleresultmap"> select role_no, role_name, note from t_role <where> <if test="rolename != null and rolename !=''"> and role_name like concat('%', #{rolename}, '%') </if> <if test="note != null and note !=''"> and note like concat('%', #{note}, '%') </if> </where> </select>
有时需要去掉一些特殊的sql语法,比如常见的and、or等。使用trim元素也可以达到预期效果。其中prefix代表的语句的前缀,prefixoverrides代表的是需要去掉哪种字符串。与前面的where语句是等效的。
<select id="findrole4" parametertype="string" resultmap="roleresultmap"> select role_no, role_name, note from t_role <trim prefix="where" prefixoverrides="and"> <if test="rolename != null and rolename !=''"> and role_name like concat('%', #{rolename}, '%') </if> </trim> </select>
在hibernate中如果因为更新某一个字段而不得已发送所有的字段给持久化对象,这样影响了sql语句的执行效率。最佳的方法是把主键和更新字段的值传递给sql去更新。set元素就可以实现此功能。set元素遇到逗号,它会自动将对应的逗号去掉。
<update id="updaterole" parametertype="role"> update t_role <set> <if test="rolename != null and rolename !=''"> role_name = #{rolename}, </if> <if test="note != null and note != ''"> note = #{note} </if> </set> where role_no = #{roleno} </update>
foreach元素
foreach元素是一个循环语句,它的作用是遍历集合,它能很好的支持数组和list、set接口的集合,对此提供遍历的功能,它往往用于sql中的in关键字。
<select id="findrolebynums" resultmap="roleresultmap"> select role_no, role_name, note from t_role where role_no in <foreach item="roleno" index="index" collection="rolenolist" open="(" separator="," close=")"> #{roleno} </foreach> </select>
collection配置的rolenolist是传递进来的参数名称,它可以是一个数组、list、set等集合。
item配置的是循环中当前的元素。
index配置的是当前元素在集合的位置下标。
open和close配置的是以什么符号将这些集合元素包装起来。
separator是各个元素的分隔符。
用test的属性判断字符串
test用于条件判断语句,其作用相当于判断真假,在大多数场景下,主要用于判断空和非空的。
<select id="getroletest" parametertype="string" resultmap="roleresultmap"> select role_no, role_name, note from t_role <if test="type == 'y'.tostring()"> where 1=1 </if> </select>
如果把 type='y'传递给sql,就可以实现mybatis加入了条件 where 1=1,所以对于字符串的判断,可以加入 tostring ()的方法进行比较。
bind元素
bind元素的作用是通过ognl表达式去定义一个上下文变量,这样更方便使用。
例如在模糊查询时,如果是mysql数据库,常常用到一个concat,它用 % 和 参数相连。然而在oracle数据库中则没有,oracle数据库用连接符号是 “||”,这样sql就需要两种形式去实现,用bind元素,就不用使用数据库语言。
<select id="findrole5" parametertype="string" resultmap="roleresultmap"> <bind name="pattern" value="'%' + _parameter + '%'" /> select role_no, role_name, note from t_role where role_name like #{pattern} </select>
以上就是我在学习过程中对于mybatis中的动态sql语句的常见知识点总结,希望大家可以一起学习进步!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
mybatis中SQL语句运用总结
-
sql server中datetime字段去除时间的语句
-
MyBatis从入门到精通(八):MyBatis动态Sql之foreach标签的用法
-
mybatis 的 dao 接口跟 xml 文件里面的 sql 是如何建立关系的?一步步解析
-
Mybatis中的动态SQL语句解析
-
Mybaits 源码解析 (六)----- 全网最详细:Select 语句的执行过程分析(上篇)(Mapper方法是如何调用到XML中的SQL的?)
-
在JDBC中实现SQL语句的模糊查询
-
用SQL语句查询数据库中某一字段下相同值的记录方法
-
sql查询表中根据某列排序的任意行语句
-
在SQL Server中查询资料库的TABLE数量与名称的sql语句