Java教程

动态sql与<if>标签

本文主要是介绍动态sql与<if>标签,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Mybatis中的sql语句处理在遇到where字句中有多项判断,并且判断的入参可能为空时。如果是忽略或者是只是用<if>标签判断非空,仍可能引起查询不正确,或sql语句报错。

正确的使用方法时<if>标签搭配<where>标签或<set>标签使用,<set>标签用于可用于插入语句或更新语句。

<where><if>

<select id="selectUserByUsernameAndSex" parameterType="com.qcby.entity.User"
        resultType="com.qcby.entity.User">

    select * from user
    <where>
        <if test="username != null">
            and username=#{username}
        </if>
        <if test="sex != null">
             and sex=#{sex}
        </if>
    </where>
</select>

使用<where>标签会优化可能引起问题and、or等字段,自动剔除引起问题的字段。

<set><if>

<update id="update" parameterType="com.qcby.entity.User">
    update user
    <set>
        <if test="username !=null and username!="">
            username = #{username},
        </if>
        <if test="address != null and address != "">
             address = #{address},
        </if>
     </set>
     where id = #{id}
</update>

<set>标签会优化多字段同时赋值可能引起问题的","。

这篇关于动态sql与<if>标签的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!