mybatis-动态sql语句-if用法

时间:2022-02-22 05:06:45

   上一篇,初步了解了一下mybatis----mybatis-简介,我们已经了解mybatis进行调用的过程,这一次主要来说如何进行动态sql语句的拼写,这次主要讲解if的应用。


查询:

咱们接着上一篇博客说,依然选用根据模糊查询或邮箱查询

    <select id="selectByUser" parameterType="com.tgb.mybatis.entity.SysUser" resultType="com.tgb.mybatis.entity.SysUser">
select
user_name "userName",
user_password "userPassword",
user_info "userInfo",
head_img"headImg",
create_time "createTime"
from
sys_user
where
1=1
<if test="userName != null and userName !=''">
and user_name like CONCAT('%',#{userName},'%')
</if>
<if test="userEmail != null and userEmail != ''">
and user_email =#{userEmail}
</if>
</select>

   if标签的必填选项test,test的属性是一个符合OGNL要求的判断表达式,表达式结果可以是true或false(除此之外非0的值为true,只有0为false)

   property != null 或 property == null 适用于任何类型的字段,用于判断属性值是否为空

   property != "" 或 property == "" 仅用于判String类型的字段,判断是否为空字符串

   and 和 or,当多个条件判断时,使用and或or进行连接

   1=1是为了避免当if条件判断都为false时,不出错,该条件始终成立。


更新:

    <update id="updateById">
update sys_user
SET
<if test="userName != null and userName !=''">
user_name = #{userName},
</if>
<if test="userPassword != null and userPassword !=''">
user_password = #{userPassword},
</if>
<if test="userEmail != null and userEmail !=''">
user_email = #{userEmail},
</if>
<if test="userInfo != null and userInfo !=''">
user_info = #{userInfo},
</if>
<if test="headImg != null and headImg !=''">
head_img = #{headImg},
</if>
<if test="createTime != null and createTime !=''">
create_time =#{createTime},
</if>
id = #{id}
where
id = #{id}
</update>

插入:

    <insert id="insert">
insert into sys_user(
user_name,
user_password,
<if test="userEmail !=null and userEmail != ''">
user_email,
</if>
user_info,
head_img,
create_time
)
VALUES
(#{userName},
#{userPassword},
<if test="userEmail != null and userEmail !=''">
user_email = #{userEmail},
</if>
#{userInfo},
#{headImg, jdbcType=BLOB},
#{createTime,jdbcType=TIMESTAMP})
</insert>

总结:

   综合上面的做法,我们看到if用法非常简单,关键是要确定是否所有判断都是false时的处理,查询我们可以用1=1这样的判断保证该条件始终正确,插入修改也一样需要注意这一点。