您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在MyBatis中利用XML去除多余AND|OR前綴或逗號,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
1.通過trim格式化標記set或where功能
2.對于set自動刪除最后一個“,”,對于where自動刪除最后一個“and|or”
使用示例如下:
1、
select * from user <trim prefix="WHERE" prefixOverride="AND |OR"> <if test="userName != null and userName.length()>0"> AND user_name=#{userName}</if> <if test="loginName != null and loginName.length()>0"> AND login_name=#{loginName}</if> </trim>
如果userName 為空則最終SQL為:
select * from user where login_name = 'xx'
prefix:
前綴
prefixOverride:
去掉第一個and或者是or
2、
update user <trim prefix="set" suffixOverride="," suffix=" where user_id = #{userId} "> <if test="userName != null and userName.length()>0"> user_name=#{userName} , </if> <if test="loginName != null and loginName.length()>0"> login_name=#{loginName} , </if> </trim>
如果userName 為空則最終SQL為:
update user set login_name='xx' where user_id='xx'
suffixOverride:
去掉最后一個逗號(也可以是其他的標記,就像是上面前綴中的and一樣)
suffix:
后綴
補充:mybatis去除多余的and或者or
啥也不多說了,大家還是直接看代碼吧~
<select id="selectBySelective" resultType="xxx.UserInfo"> select <include refid="Base_Column_List" /> from uc_user <trim prefix="WHERE (" suffix=")" prefixOverrides="AND |OR "> <if test="userName != null" > user_name = #{userName} </if> <if test="email != null" > or email = #{email} </if> <if test="phone != null" > or phone = #{phone} </if> <if test="weiboId != null" > or weibo_id = #{weiboId} </if> <if test="wxId != null" > or wx_id = #{wxId} </if> <if test="qqId != null" > or qq_id = #{qqId} </if> </trim> and status = 1 </select>
看完上述內容,你們對怎么在MyBatis中利用XML去除多余AND|OR前綴或逗號有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。