1 if
<select id="selByAccinAccout" resultType="Log">
select * from log where 1=1
<if test="accin!=null and accin!=''">
and accin=#{accin}
</if>
<if test="accout!=null and accout!=''">
and accout=#{accout}
</if>
</select>
2 where(去掉第一个and)
相比if减少了“where 1=1”,减少了逻辑判断,提高效率
<select id="selByAccinAccout" resultType="Log">
select * from log
<where>
<if test="accin!=null and accin!=''">
and accin=#{accin}
</if>
<if test="accout!=null and accout!=''">
and accout=#{accout}
</if>
</where>
</select>
3 choose
<select id="selByAccinAccout" resultType="Log">
select * from log
<where>
<choose>
<when test="accin!=null and accin!=''">
and accin=#{accin}
</when>
<when test="accout!=null and accout!=''">
and accout=#{accout}
</when>
</choose>
</where>
</select>
4 set(去掉最后一个逗号)
其中加入“id=#{id},”目的是为了防止set中没有内容,mybatis不生成set关键字,如果update中没有set从句,是sql语法错误
<update id="upd" parameterType="Log">
update log
<set>
id=#{id},
<if test="accin!=null and accin!=''">
accin=#{accin},
</if>
<if test="accout!=null and accout!=''">
accout=#{accout},
</if>
</set>
where id=#{id}
</update>
5 trim
- prefix在前面添加内容
- prefixOverrides去掉前面的内容
- suffix在后面添加内容
- suffixOverrides去掉后面的内容
<update id="updByTrim" parameterType="Log">
update log
<trim prefix="set" suffixOverrides=",">
accin=#{accin},accout=#{accout},
</trim>
where id=#{id}
</update>
DEBUG 2018-09-23 03:07:08 第139行 ==> Preparing: update log set accin=?,accout=? where id=?
DEBUG 2018-09-23 03:07:08 第139行 ==> Parameters: 1(String), 2(String), 1(Integer)
DEBUG 2018-09-23 03:07:08 第139行 <== Updates: 1
6 bind
作用:给参数重新赋值
场景:
- 模糊查询
- 在原内容前后添加内容
<select id="selByLog" parameterType="Log" resultType="Log">
<bind name="accin" value="'%'+accin+'%'"/>
select * from log where accin=#{accin}
</select>
DEBUG 2018-09-23 03:44:42 第139行 ==> Preparing: select * from log where accin=?
DEBUG 2018-09-23 03:44:42 第139行 ==> Parameters: %1%(String)
DEBUG 2018-09-23 03:44:42 第139行 <== Total: 0
(用于当用户输入的是abc,而数据库中存的却是#abc这样的类似的查询工作)
7 foreach
open 在循环之前加内容
close 在循环之后加内容
separator 在每个循环遍历的元素之间加内容
<select id="selIn" parameterType="list" resultType="Log">
select * from log where id in
<foreach collection="list" item="abc" open="(" close=")" separator=",">
#{abc}
</foreach>
</select>
DEBUG 2018-09-23 07:44:33 第139行 ==> Preparing: select * from log where id in ( ? , ? )
DEBUG 2018-09-23 07:44:33 第139行 ==> Parameters: 1(Integer), 2(Integer)
DEBUG 2018-09-23 07:44:33 第139行 <== Total: 2
批量插入
需要在openSession中加入ExecutorType.BATCH
SqlSession session = factory.openSession(ExecutorType.BATCH);
<insert id="ins" parameterType="list">
insert into log values
<trim suffixOverrides=",">
<foreach collection="list" item="a">
(default,#{a},2,2),
</foreach>
</trim>
</insert>
DEBUG 2018-09-23 08:08:59 第139行 ==> Preparing: insert into log values (default,?,2,2), (default,?,2,2)
DEBUG 2018-09-23 08:08:59 第139行 ==> Parameters: 1(Integer), 2(Integer)
DEBUG 2018-09-23 08:08:59 第139行 <== Updates: 2
8 sql与include
<select id="selInclude" resultType="Log">
select <include refid="mysql"></include>
from log
</select>
<sql id="mysql">
id,accin,accout,money
</sql>
DEBUG 2018-09-23 08:09:52 第139行 ==> Preparing: select id,accin,accout,money from log
DEBUG 2018-09-23 08:09:52 第139行 ==> Parameters:
DEBUG 2018-09-23 08:09:52 第139行 <== Total: 147