动态SQL语句
Posted wuqi2328857945
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态SQL语句相关的知识,希望对你有一定的参考价值。
1.if 条件
2.choose , when 和 otherwise条件
3.where 条件
4.trim 条件
5.forEach循环
6.set 条件
if:有条件的包含where子句的一部分;比如:
<select id="findActiveBlogWithTitleLike" resultType="Blog"> SELECT * FROM BLOG WHERE state = ‘ACTIVE’ <if test="title != null"> AND title like #{title} </if> </select>
choose、when、otherwise,例子如下:
<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>
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>
trim和where有点相似,只是使用规则稍微麻烦点;
trim 属性
prefix:前缀覆盖并增加其内容
suffix:后缀覆盖并增加其内容
prefixOverrides:前缀判断的条件
suffixOverrides:后缀判断的条件
suffix针对符合suffixOverrides的SQL语句追加后缀suffix值;prefix是针对符合preffixOverrides的语句添加前缀suffix值;
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>
foreach
功能:向sql传递数组或是list;
参数、属性:
collection,指定输入对象中的集合属性;
item,表示集合中每一个元素进行迭代时的别名;
index,指定一个名字,表示在迭代过程中,每次迭代到的位置;
open,表示该语句什么时候开始;
separator,表示每次迭代过程中以什么符号分割;
close,表示以什么结束;
重点说一下collection属性,当传入的参数是一个list的时候,其属性是list;如果传入参数是一个array数组的时候,其属性是array;
如果传入的参数是多个的时候,需要封装成一个map。
<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>
以上是关于动态SQL语句的主要内容,如果未能解决你的问题,请参考以下文章