MyBatis-动态SQL

动态SQL是MyBatis的一个强大的特性。MyBatis 使用了基于强大的 OGNL(Object-Graph Navigation Language 的缩写,它是一种功能强大的表达式语言)表达式来避免了大部分其它的元素。 MyBatis 通过映射的 SQL 语句使用强大的动态 SQL 来解决许多的问题。

if:利用if实现简单的条件选择

choose(when,otherwise):相当于Java中的switch语句,通常与when和otherwise搭配

where:简化SQL语句中where的条件判断

set:解决动态更新语句

trim:可以灵活地去除关键字

foreach:迭代一个集合,通常用于in条件

1.选项卡筛选查询

<!-- 功能要求:使用用户角色ID和用户名称进行模糊查询

当用户ID不传时 表示使用用户名称进行模糊查询 当用户名称为空时 表示使用用户ID查询

当角色roleId传入空时 将查询不到任何数据

<select id="getUserList" resultMap="userList">

select U.*,R.roleName from smbms_user AS U,smbms_role AS R

where username like concat(‘%‘,#{1},‘%‘) and userRole=#{0} and U.userRole=R.id

</select>

-->

<!-- 使用if改进查询 实现选择查询

<select id="getUserList" resultMap="userList">

select U.*,R.roleName from smbms_user AS U,smbms_role AS R

where

<if test="username!=null and username!=‘‘">

username like concat(‘%‘,#{username},‘%‘)

</if>

<if test="roleId!=null">

and userRole=#{roleId}

</if>

and U.userRole=R.id

</select>

-->

<!-- 使用where+if改进查询

<select id="getUserList" resultMap="userList">

select U.*,R.roleName from smbms_user AS U,smbms_role AS R

<where>

<if test="username!=null and username!=‘‘">

and username like concat(‘%‘,#{username},‘%‘)

</if>

<if test="roleId!=null">

and userRole=#{roleId}

</if>

and U.userRole=R.id

</where>

</select>

-->

<!-- 使用if+trim改进查询  prefix:前缀 suffix:后缀 prefixOverrides:对trim包含内容首部的覆盖(忽略) suffixOverrides:对trim包含内容尾部的覆盖(忽略)-->

<select id="getUserList" resultMap="userList">

select U.*,R.roleName from smbms_user AS U,smbms_role AS R

<trim prefix="where" prefixOverrides="and | or" suffix="and U.userRole=R.id">

<if test="username!=null and username!=‘‘">

and username like concat(‘%‘,#{username},‘%‘)

</if>

<if test="roleId!=null">

and userRole=#{roleId}

</if>

</trim>

</select>

2.修改用户信息

<!-- 使用if+set实现更新操作

<update id="modifyUser" parameterType="User">

update smbms_user

<set>

<if test="userCode != null">userCode=#{userCode},</if>

<if test="userName != null">userName=#{userName},</if>

<if test="userPassword != null">userPassword=#{userPassword},</if>

<if test="gender != null">gender=#{gender},</if>

<if test="birthday != null">birthday=#{birthday},</if>

<if test="phone != null">phone=#{phone},</if>

<if test="address != null">address=#{address},</if>

<if test="userRole != null">userRole=#{userRole},</if>

<if test="modifyBy != null">modifyBy=#{modifyBy},</if>

<if test="modifyDate != null">modifyDate=#{modifyDate}</if>

</set>

where id = #{id}

</update>

-->

<!-- 使用if+trim实现更新操作 -->

<update id="modifyUser" parameterType="User">

update smbms_user

<trim prefix="set" suffixOverrides="," suffix="where id = #{id}">

<if test="userCode != null">userCode=#{userCode},</if>

<if test="userName != null">userName=#{userName},</if>

<if test="userPassword != null">userPassword=#{userPassword},</if>

<if test="gender != null">gender=#{gender},</if>

<if test="birthday != null">birthday=#{birthday},</if>

<if test="phone != null">phone=#{phone},</if>

<if test="address != null">address=#{address},</if>

<if test="userRole != null">userRole=#{userRole},</if>

<if test="modifyBy != null">modifyBy=#{modifyBy},</if>

<if test="modifyDate != null">modifyDate=#{modifyDate}</if>

</trim>

</update>

3.使用foreach完成复杂查询(in)

item:表示集合中每一个元素进行带带时的别名

index:指定一个名词,用于表示在迭代过程中,每次迭代到的位置

open:表示该语句以什么开始

separator:表示在每次进行迭代之间以什么符号作为分隔符

close:表示该语句以什么结束

collection:该属性必须指定,入参为单参数且参数类型为数组,collection属性值为array;入参为单参数且参数类型为List,collection属性值为list;若入参为多参数 需要封装成Map进行处理

-->

<!-- 根据用户角色列表,获取该角色列表下用户列表信息 单参数 使用数组 -->

<select id="getUserByRoleId_array" resultMap="userList">

select * from smbms_user where userRole in

<foreach collection="array" item="roleId" open="(" separator="," close=")">

#{roleId}

</foreach>

</select>

<!-- 根据用户角色列表,获取该角色列表下用户列表信息 单参数 使用list -->

<select id="getUserByRoleId_list" resultMap="userList">

select * from smbms_user where userRole in

<foreach collection="list" item="roleId" open="(" separator="," close=")">

#{roleId}

</foreach>

</select>

<!-- 根据用户角色列表,获取该角色列表下用户列表信息      单参数 使用map集合 -->

<!-- <select id="getUserByRoleId_map" resultMap="userList">

select * from smbms_user where userRole in

<foreach collection="roleList" item="roleId" open="(" separator="," close=")">

#{roleId}

</foreach>

</select> -->

<!-- 根据用户角色列表,获取该角色列表下用户列表信息 多参数 使用map集合-->

<select id="getUserByRoleId_map" resultMap="userList">

select * from smbms_user where gender=#{gender} and userRole in

<foreach collection="roleList" item="roleId" open="(" separator="," close=")">

#{roleId}

</foreach>

</select>

4.查询用户列表(choose)

<!-- 使用choose+when+otherwise -->

<select id="getUserList_choose" resultType="User">

select * from smbms_user where 1=1

<choose>

<when test="userName != null and userName != ‘‘">

and userName like CONCAT (‘%‘,#{userName},‘%‘)

</when>

<when test="userCode != null and userCode != ‘‘">

and userCode like CONCAT (‘%‘,#{userCode},‘%‘)

</when>

<when test="userRole != null">

and userRole=#{userRole}

</when>

<otherwise>

<!-- and YEAR(creationDate) = YEAR(NOW()) -->

and YEAR(creationDate) = YEAR(#{creationDate})

</otherwise>

</choose>

</select>

5.查询用户列表(分页显示)

<select id="getUserListByPage" resultMap="userList">

select u.*,r.roleName from smbms_user u,smbms_role r where u.userRole = r.id

<if test="userRole != null">

and u.userRole = #{userRole}

</if>

<if test="userName != null and userName != ‘‘">

and u.userName like CONCAT (‘%‘,#{userName},‘%‘)

</if>

order by creationDate DESC limit #{from},#{pageSize}

</select>

时间: 2024-10-14 15:19:33

MyBatis-动态SQL的相关文章

MyBatis动态SQL小结

p.MsoNormal,li.MsoNormal,div.MsoNormal { margin: 0cm; margin-bottom: .0001pt; text-align: justify; font-size: 10.5pt; font-family: 等线 } .MsoChpDefault { font-family: 等线 } div.WordSection1 { } ol { margin-bottom: 0cm } ul { margin-bottom: 0cm } Mybati

MyBatis动态SQL————MyBatis动态SQL标签的用法

1.MyBatis动态SQL MyBatis 的强大特性之一便是它的动态 SQL,即拼接SQL字符串.如果你有使用 JDBC 或其他类似框架的经验,你就能体会到根据不同条件拼接 SQL 语句有多么痛苦.拼接的时候要确保不能忘了必要的空格,还要注意省掉列名列表最后的逗号.利用动态 SQL 这一特性可以彻底摆脱这种痛苦. 通常使用动态 SQL 不可能是独立的一部分,MyBatis 当然使用一种强大的动态 SQL 语言来改进这种情形,这种语言可以被用在任意的 SQL 映射语句中. 动态 SQL 元素和

mybatis实战教程(mybatis in action)之八:mybatis 动态sql语句

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

用Groovy模板写MyBatis动态SQL

MyBatis动态SQL简介 MyBatis有个强大的功能,动态SQL.有了这个功能,定义在Mapper里的SQL语句,就不必是静止不变的了,而是可以根据传入的参数,动态调整.下面是MyBatis官方文档里的一个if语句的例子: <select id="findActiveBlogWithTitleLike" resultType="Blog"> SELECT * FROM BLOG WHERE state = 'ACTIVE' <if test=

Mybatis 动态sql(转载)

原文地址:http://www.cnblogs.com/dongying/p/4092662.html 传统的使用JDBC的方法,相信大家在组合复杂的的SQL语句的时候,需要去拼接,稍不注意哪怕少了个空格,都会导致错误.Mybatis的动态SQL功能正是为了解决这种问题, 其通过 if, choose, when, otherwise, trim, where, set, foreach标签,可组合成非常灵活的SQL语句,从而提高开发人员的效率.下面就去感受Mybatis动态SQL的魅力吧: 1

mybatis 动态sql语句

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

mybatis 动态sql和参数

mybatis 动态sql 名词解析 OGNL表达式 OGNL,全称为Object-Graph Navigation Language,它是一个功能强大的表达式语言,用来获取和设置Java对象的属性,它旨在提供一个更高的更抽象的层次来对Java对象图进行导航. OGNL表达式的基本单位是"导航链",一般导航链由如下几个部分组成: 属性名称(property) 方法调用(method invoke) 数组元素 所有的OGNL表达式都基于当前对象的上下文来完成求值运算,链的前面部分的结果将

4.mybatis动态SQL拼接/取值/OGNL

4.mybatis动态SQL拼接/取值 一.mybatis框架的SQL拼接是采用OGNL表达式进行的,以下我会列出常用的取值方法. 图片来源:慕课网 1.1常用的取值方法: 1.2特殊的取值方法: mod为取余数

MyBatis动态SQL之一使用 if 标签和 choose标签

bootstrap react https://segmentfault.com/a/1190000010383464 xml 中 < 转义 to thi tha <if test="pricehigh!=null"> and price < #{pricehigh,jdbcType=INTEGER} </if> MyBatis动态SQL之一使用 if 标签和 choose标签 <select id="getItems" p

mybatis动态sql中的两个内置参数(_parameter和_databaseId)

<!-- mybatis动态sql的两个内置参数           不只是方法传递过来的参数可以被用来判断,取值       mybatis默认还有两个内置参数           _parameter:代表整个参数                                      单个参数:_parameter就是这个参数                                      多个参数:参数会被封装为一个map:_parameter就是代表这个map