目录
-
- 动态SQL if语句
-
- 动态SQL if+where语句
-
- 动态SQL if+set语句
-
- 动态SQL choose(when,otherwise)语句
-
- 动态SQL trim语句
-
- 动态SQL SQL片段
-
- 动态SQL foreach语句
动态SQL if语句
<select id="selectUserByUsernameAndAge" resultMap="UserMap">
select * from user where
<if test="username != null">
username=#{username}
</if>
<if test="age != null">
and age=#{age}
</if>
</select>
如果 sex 等于 null,那么查询语句为 select * from user where username=#{username},但是如果usename 为空呢?那么查询语句为 select * from user where and age=#{age},这是错误的 SQL 语句
动态SQL if+where语句
<select id="selectUserByUsernameAndAge" resultMap="UserMap">
select * from user
<where>
<if test="username != null">
username=#{username}
</if>
<if test="age != null">
and age=#{age}
</if>
</where>
</select>
“where”标签会知道如果它包含的标签中有返回值的话,它就插入一个‘where’。此外,如果标签返回的内容是以AND 或OR 开头的,则它会剔除掉。
动态SQL if+set语句
<!-- 根据 id 更新 user 表的数据 -->
<update id="updateUserById" parameterType="com.kdgc.wx.entity.User">
update user u
<set>
<if test="username != null and username != ''">
u.username = #{username},
</if>
<if test="age != null and age != ''">
u.age = #{age}
</if>
</set>
where id=#{id}
</update>
动态SQL choose(when,otherwise)语句
<select id="selectUserByChoose" resultType="com.kdgc.wx.entity.User" parameterType="com.kdgc.wx.entity.User">
select * from user
<where>
<choose>
<when test="id !='' and id != null">
id=#{id}
</when>
<when test="username !='' and username != null">
and username=#{username}
</when>
<otherwise>
and age=#{age}
</otherwise>
</choose>
</where>
</select>
动态SQL trim语句
trim标记是一个格式化的标记,可以完成set或者是where标记的功能
①、用 trim 改写上面第二点的 if+where 语句
<select id="selectUserByUsernameAndAge" resultType="user" parameterType="com.kdgc.wx.entity.User">
select * from user
<!-- <where>
<if test="username != null">
username=#{username}
</if>
<if test="username != null">
and sex=#{sex}
</if>
</where> -->
<trim prefix="where" prefixOverrides="and | or">
<if test="username != null">
and username=#{username}
</if>
<if test="sex != null">
and sex=#{sex}
</if>
</trim>
</select>
prefix:前缀
prefixoverride:去掉第一个and或者是or
②、用 trim 改写上面第三点的 if+set 语句
<!-- 根据 id 更新 user 表的数据 -->
<update id="updateUserById" parameterType="com.kdgc.wx.entity.User">
update user u
<!-- <set>
<if test="username != null and username != ''">
u.username = #{username},
</if>
<if test="sex != null and sex != ''">
u.sex = #{sex}
</if>
</set> -->
<trim prefix="set" suffixOverrides=",">
<if test="username != null and username != ''">
u.username = #{username},
</if>
<if test="sex != null and sex != ''">
u.age = #{age},
</if>
</trim>
where id=#{id}
</update>
suffix:后缀
suffixoverride:去掉最后一个逗号(也可以是其他的标记,就像是上面前缀中的and一样)
动态SQL SQL片段
有时候可能某个 sql 语句我们用的特别多,为了增加代码的重用性,简化代码,我们需要将这些代码抽取出来,然后使用时直接调用。
<!-- 定义 sql 片段 -->
<sql id="selectUserByUserNameAndAgeSQL">
<if test="username != null and username != ''">
AND username = #{username}
</if>
<if test="age != null and age != ''">
AND age = #{age}
</if>
</sql>
引用 sql 片段
<select id="selectUserByUsernameAndSex" resultType="user" parameterType="com.kdgc.wx.entity.User">
select * from user
<trim prefix="where" prefixOverrides="and | or">
<!-- 引用 sql 片段,如果refid 指定的不在本文件中,那么需要在前面加上 namespace -->
<include refid="selectUserByUserNameAndSexSQL"></include>
<!-- 在这里还可以引用其他的 sql 片段 -->
</trim>
</select>
注意:
①、最好基于 单表来定义 sql 片段,提高片段的可重用性
②、在 sql 片段中最好不要包括 where
动态SQL foreach语句
需求:我们需要查询 user 表中 id 分别为1,2,3的用户
sql语句:
select * from user where id=1 or id=2 or id=3
select * from user where id in (1,2,3)
- foreach 来改写 select * from user where id=1 or id=2 or id=3
<select id="selectUserByListId" parameterType="com.kdgc.wx.entity.UserVo" resultType="com.kdgc.wx.entity.User">
select * from user
<where>
<!--
collection:指定输入对象中的集合属性
item:每次遍历生成的对象
open:开始遍历时的拼接字符串
close:结束时拼接的字符串
separator:遍历对象之间需要拼接的字符串
select * from user where 1=1 and (id=1 or id=2 or id=3)
-->
<foreach collection="ids" item="id" open="and (" close=")" separator="or">
id=#{id}
</foreach>
</where>
</select>
- foreach 来改写 select * from user where id in (1,2,3)
<select id="selectUserByListId" parameterType="com.kdgc.wx.entity.UserVo" resultType="com.kdgc.wx.entity.User">
select * from user
<where>
<!--
collection:指定输入对象中的集合属性
item:每次遍历生成的对象
open:开始遍历时的拼接字符串
close:结束时拼接的字符串
separator:遍历对象之间需要拼接的字符串
select * from user where 1=1 and id in (1,2,3)
-->
<foreach collection="ids" item="id" open="and id in (" close=") " separator=",">
#{id}
</foreach>
</where>
</select>
文章参考:https://www.cnblogs.com/ysocean/p/7289529.html
标签:username,语句,user,SQL,Mybatis,动态,where,id From: https://www.cnblogs.com/HelloWxl/p/16597008.html