动态sql

动态 SQL

MyBatis 的强大特性之一便是它的动态 SQL。如果你有使用 JDBC 或其它类似框架的经验,你就能体会到根据不同条件拼接 SQL 语句的痛苦。例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL 这一特性可以彻底摆脱这种痛苦。

虽然在以前使用动态 SQL 并非一件易事,但正是 MyBatis 提供了可以被用在任意 SQL 映射语句中的强大的动态 SQL 语言得以改进这种情形。

动态 SQL 元素和 JSTL 或基于类似 XML 的文本处理器相似。在 MyBatis 之前的版本中,有很多元素需要花时间了解。MyBatis 3 大大精简了元素种类,现在只需学习原来一半的元素便可。MyBatis 采用功能强大的基于 OGNL 的表达式来淘汰其它大部分元素。

if
choose (when, otherwise)
trim (where, set)
foreach
if

动态 SQL 通常要做的事情是根据条件包含 where 子句的一部分。比如:


SELECT * FROM BLOG
WHERE state = ‘ACTIVE’

AND title like #{title}

这条语句提供了一种可选的查找文本功能。如果没有传入“title”,那么所有处于“ACTIVE”状态的BLOG都会返回;反之若传入了“title”,那么就会对“title”一列进行模糊查找并返回 BLOG 结果(细心的读者可能会发现,“title”参数值是可以包含一些掩码或通配符的)。

如果希望通过“title”和“author”两个参数进行可选搜索该怎么办呢?首先,改变语句的名称让它更具实际意义;然后只要加入另一个条件即可。


SELECT * FROM BLOG WHERE state = ‘ACTIVE’

AND title like #{title}


AND author_name like #{author.name}


choose, when, otherwise

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

还是上面的例子,但是这次变为提供了“title”就按“title”查找,提供了“author”就按“author”查找的情形,若两者都没有提供,就返回所有符合条件的 BLOG(实际情况可能是由管理员按一定策略选出 BLOG 列表,而不是返回大量无意义的随机结果)。


SELECT * FROM BLOG WHERE state = ‘ACTIVE’


AND title like #{title}


AND author_name like #{author.name}


AND featured = 1



trim, where, set
前面几个例子已经合宜地解决了一个臭名昭著的动态 SQL 问题。现在回到“if”示例,这次我们将“ACTIVE = 1”也设置成动态的条件,看看会发生什么。


SELECT * FROM BLOG
WHERE

state = #{state}


AND title like #{title}


AND author_name like #{author.name}

如果这些条件没有一个能匹配上会发生什么?最终这条 SQL 会变成这样:

SELECT * FROM BLOG
WHERE
这会导致查询失败。如果仅仅第二个条件匹配又会怎样?这条 SQL 最终会是这样:

SELECT * FROM BLOG
WHERE
AND title like ‘someTitle’

这个查询也会失败。这个问题不能简单地用条件句式来解决,如果你也曾经被迫这样写过,那么你很可能从此以后都不会再写出这种语句了。

MyBatis 有一个简单的处理,这在 90% 的情况下都会有用。而在不能使用的地方,你可以自定义处理方式来令其正常工作。一处简单的修改就能达到目的:


SELECT * FROM BLOG


state = #{state}


AND title like #{title}


AND author_name like #{author.name}


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

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

...

prefixOverrides 属性会忽略通过管道分隔的文本序列(注意此例中的空格也是必要的)。它的作用是移除所有指定在 prefixOverrides 属性中的内容,并且插入 prefix 属性中指定的内容。

类似的用于动态更新语句的解决方案叫做 set。set 元素可以用于动态包含需要更新的列,而舍去其它的。比如:

update Author username=#{username}, password=#{password}, email=#{email}, bio=#{bio} where id=#{id}

这里,set 元素会动态前置 SET 关键字,同时也会删掉无关的逗号,因为用了条件语句之后很可能就会在生成的 SQL 语句的后面留下这些逗号。(译者注:因为用的是“if”元素,若最后一个“if”没有匹配上而前面的匹配上,SQL 语句的最后就会有一个逗号遗留)

若你对 set 元素等价的自定义 trim 元素的代码感兴趣,那这就是它的真面目:

...

注意这里我们删去的是后缀值,同时添加了前缀值。

foreach

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

SELECT * FROM POST P WHERE ID in #{item}

foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及在迭代结果之间放置分隔符。这个元素是很智能的,因此它不会偶然地附加多余的分隔符。

注意 你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象传递给 foreach 作为集合参数。当使用可迭代对象或者数组时,index 是当前迭代的次数,item 的值是本次迭代获取的元素。当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。

如下例子

if
trim
where
set
choose(when,otherwise)
foreac

<!--多条件查询, userList引用外部映射-->
	<select id="selectUserrole" resultMap="userList">
		select u.*, r.roleCode,r.roleName  from smbms_user u,smbms_role r
		where u.userRole=r.id
		<if test="userRole!=null">
			and userRole=#{userRole}
		</if>
		<if test="userName!=null and userName!=''">
			and userName like concat("%",#{userName},"%")
		</if>
	</select>


<!--多条件查询,map封装数据-->
	<select id="selectUserInfoMap" parameterType="Map"  resultType="User">
		select  * from  smbms_user
		<trim prefix="where" prefixOverrides="and | or" >
			<if test="userName!=null and userName!=''">
				 and userName like concat("%",#{userName},"%")
			</if>
			<if test="userRole!=null ">
				and userRole like concat("%",#{userRole},"%")
			</if>
		</trim>


	</select>



<!--修改用户-->
	<!--if +set-->
	<update id="updateUser" parameterType="User">
		update smbms_user
		<trim prefix="set" suffixOverrides="," suffix=" where id=#{id}">
			<if test="userName!=null">userName=#{userName},</if>
			<if test="userCode!=null">userCode=#{userCode},</if>
			<if test="phone!=null">phone=#{phone},</if>
		</trim>

	</update>


<resultMap id="userMapByRole" type="User">
		<id property="id" column="id"/>
		<result property="userCode" column="userCode"/>
		<result property="userName" column="userName"/>
	</resultMap>
	
	<select id="selectUserRoleId_foreach_array" resultMap="userMapByRole" >
		select * from smbms_user where userRole in
		<foreach collection="array" item="roleIds"
			open="(" separator="," close=")">
			#{roleIds}
		</foreach>
	</select>


	<select id="selecUserRoleId_foreach_list" resultMap="userMapByRole">
		select * from smbms_user where userRole in
		<foreach collection="list" item="rolelist"
				 open="(" separator="," close=")">
			#{rolelist}
		</foreach>
	</select>


	<select id="selectUserRoleId_foreach_map" resultMap="userMapByRole">
		select * from smbms_user where  gender=${gender}
		and userRole in
		<foreach collection="Rolelist" item="roleMap"
				 open="(" separator="," close=")">
			#{roleMap}
		</foreach>
	</select>


	<select id="selectUser_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="userRole!=null ">
				and userRole like concat("%",#{userRole},"%")
			</when>
			<when test="userCode!=null and userCode=''">
				and userCode like concat("%",#{userCode},"%")
			</when>
		</choose>
	</select>


	<select id="selectUser_fenye" resultMap="userList">
		select u.*, r.roleCode,r.roleName  from smbms_user u,smbms_role r
		where u.userRole=r.id
		<if test="userRole!=null">
			and userRole=#{userRole}
		</if>
		<if test="userName!=null and userName=''">
			and userName like concat("%",#{userName},"%")
		</if>
		order by creationDate DESC limit #{from},#{PageSize}

	</select>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值