10.动态SQL
什么是动态SQL:动态SQL就是指根据不同条件生成的SQL
在我们之前的使用时,我们都是用java判断手动拼接sql,这样给我们带来了问题,也增加了我们的工作量。那么,mybatis给我们提供了动态sql,只需要用像JSTL或XML这样的标签就可以实现动态sql了。
其实每一个动态SQL都对应一句完整的SQL,只是通过一些标签将SQL进行了动态处理
下面我们来介绍这些标签如何使用和使用场景。
10.1if
sql:
select * from blog where state='ACTIVE'
and title like #{title} --语句1
and author_name like #{author.anme} --语句2
在语句1,2中选择性拼接,如果语句中的参数值不为null那么就拼接,否则不拼接。这可以全部选择拼接,也可以选择其中一个拼接,也可以都不选择。
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG WHERE state = ‘ACTIVE’
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</select>
10.2choose
sql:
select * from blog where state='ACTIVE'
and title like #{title} --语句1
and author_name like #{author.anme} --语句2
and featured=1 --语句2
在上述选择一句进行拼接,只能选择其中一个。相当于switch ,只匹配其中一个,如果匹配了第一个那么就不会匹配其他的。如果都不匹配则匹配默认的。
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG WHERE state = ‘ACTIVE’
<choose>
<when test="title != null">
AND title like #{title}
</when>
<when test="author != null and author.name != null">
AND author_name like #{author.name}
</when>
<otherwise>
AND featured = 1
</otherwise>
</choose>
</select>
10.3where
sql:
select * from blog where state='ACTIVE'
and title like #{title}
and author_name like #{author.anme}
where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG
<where>
<if test="state != null">
state = #{state}
</if>
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</where>
</select>
10.4set
sql:
update Author set
username=#{username},
password=#{password},
email=#{email},
bio=#{bio}
set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的)
<update id="updateAuthorIfNecessary">
update Author
<set>
<if test="username != null">username=#{username},</if>
<if test="password != null">password=#{password},</if>
<if test="email != null">email=#{email},</if>
<if test="bio != null">bio=#{bio}</if>
</set>
where id=#{id}
</update>
10.5trim
<--该语句等效于where-->
<trim prefix="WHERE" prefixOverrides="AND |OR ">
...
</trim>
<--该语句等效于set-->
<trim prefix="SET" suffixOverrides=",">
...
</trim>
10.6SQL片段
抽取相同sql,方便复用
<sql id="sql1">
<if test="state != null">
state = #{state}
</if>
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</sql>
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG
<where>
<include refid="">sql1</include>
</where>
</select>
<-- 上述的查询和下面的查询等效 -->
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG
<where>
<if test="state != null">
state = #{state}
</if>
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</where>
</select>
只是把sql抽出去来,方便我们复用
10.7foreach
sql:
select * from POST p where ID in (1,2,3,4) list=(1,2,3,4)
foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。这个元素也不会错误地添加多余的分隔符,看它多智能!
提示 你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象作为集合参数传递给 foreach。当使用可迭代对象或者数组时,index 是当前迭代的序号,item 的值是本次迭代获取到的元素。当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。
<select id="selectPostIn" resultType="domain.blog.Post">
SELECT *
FROM POST P
WHERE ID in
<foreach item="item" index="index" collection="list"
open="(" separator="," close=")">
#{item}
</foreach>
</select>