91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mybatis的where標簽怎么使用

發布時間:2022-03-03 14:09:15 來源:億速云 閱讀:196 作者:iii 欄目:開發技術

本篇內容主要講解“mybatis的where標簽怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“mybatis的where標簽怎么使用”吧!

我們經常在動態構造sql時,為防止注入或防止語句不當時會使用where 1=1

<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">
    select
        *
    from 
        zc_chat_group 
    WHERE 1=1
    <if test="id!=null">
        id= #{id} 
    </if>
    <if test="leaderNum!=null">
        and leader_num = #{leaderNum} 
    </if>
    <if test="groupType!=null">
        and group_type = #{groupType} 
    </if>
  </select>

 但在使用where標簽可以簡化這條語句

<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">
    select
        *
    from 
        zc_chat_group 
    <where>
        <if test="id!=null">
            id= #{id} 
        </if>
        <if test="leaderNum!=null">
            and leader_num = #{leaderNum} 
        </if>
        <if test="groupType!=null">
            and group_type = #{groupType} 
        </if>
    </where>
  </select>

這條sql執行時,如果id這個參數為null,則這條語句的執行結果為

select * from zc_chat_group where leader_num = ‘xx' and group_type = ‘xx'

這個&lsquo;where&rsquo;標簽會知道如果它包含的標簽中有返回值的話,它就會插入一個&lsquo;where&rsquo;。此外,如果標簽返回的內容是以AND 或OR開頭的,則會把它去除掉。

Mybatis where標簽的使用

為了能達到MySQL性能的調優,我們可以基于Mybatis的where標簽來進行實現。where標簽是頂層的遍歷標簽,需要配合if標簽使用,單獨使用無意義。通常有下面兩種實現形式。

方式一:

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <where>
      <if test="username != null and username != ''">
        username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        and id_no = #{idNo}
      </if>
    </where>
  </select>

方式二:

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <where>
      <if test="username != null and username != ''">
        and username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        and id_no = #{idNo}
      </if>
    </where>
  </select>

仔細觀察會發現,這兩種方式的區別在于第一if條件中的SQL語句是否有and。

這里就涉及到where標簽的兩個特性:

  • 第一,只有if標簽有內容的情況下才會插入where子句;

  • 第二,若子句的開通為 “AND” 或 “OR”,where標簽會將它替換去除;

所以說,上面的兩種寫法都是可以了,Mybatis的where標簽會替我們做一些事情。
但需要注意的是:where標簽只會 智能的去除(忽略)首個滿足條件語句的前綴。所以建議在使用where標簽時,每個語句都最好寫上 and 前綴或者 or 前綴,否則像以下寫法就會出現問題:

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <where>
      <if test="username != null and username != ''">
        username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        id_no = #{idNo}
      </if>
    </where>
  </select>

生成的SQL語句如下:

select * from t_user      WHERE username = ?  id_no = ?

很顯然,語法是錯誤的。
因此,在使用where標簽時,建議將所有條件都添加上and或or;

進階:自定義trim標簽

上面使用where標簽可以達到拼接條件語句時,自動去掉首個條件的and或or,那么如果是其他自定義的關鍵字是否也能去掉呢?
此時,where標簽就無能為力了,該trim標簽上場了,它也可以實現where標簽的功能。

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <trim prefix="where" prefixOverrides="and | or ">
      <if test="username != null and username != ''">
        and username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        and id_no = #{idNo}
      </if>
    </trim>
  </select>

將上面基于where標簽的寫改寫為trim標簽,發現執行效果完全一樣。而且trim標簽具有了更加靈活的自定義性。

where語句的坑

另外,在使用where語句或其他語句時一定要注意一個地方,那就是:注釋的使用。
先來看例子:

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <where>
      <if test="username != null and username != ''">
        and username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        /* and id_no = #{idNo}*/
        and id_no = #{idNo}
      </if>
    </where>
  </select>

上述SQL語句中添加了 /**/的注釋,生成的SQL語句為:

select * from t_user WHERE username = ? /* and id_no = ?*/ and id_no = ?

執行時,直接報錯。

還有一個示例:

  <select id="selectSelective" resultType="com.secbro.entity.User">
    select * from t_user
    <where>
      <if test="username != null and username != ''">
        -- and username = #{username}
        and username = #{username}
      </if>
      <if test="idNo != null and idNo != ''">
        and id_no = #{idNo}
      </if>
    </where>
  </select>

生成的SQL語句為:

select * from t_user WHERE -- and username = ? and username = ? and id_no = ?

同樣會導致報錯。

這是因為我們使用 XML 方式配置 SQL 時,如果在 where 標簽之后添加了注釋,那么當有子元素滿足條件時,除了 < !-- --> 注釋會被 where 忽略解析以外,其它注釋例如 // 或 /**/ 或 -- 等都會被 where 當成首個子句元素處理,導致后續真正的首個 AND 子句元素或 OR 子句元素沒能被成功替換掉前綴,從而引起語法錯誤。
同時,個人在實踐中也經常發現因為在XML中使用注釋不當導致SQL語法錯誤或執行出錯誤的結果。強烈建議,非必要,不要在XML中注釋掉SQL,可以通過版本管理工具來追溯歷史記錄和修改。

到此,相信大家對“mybatis的where標簽怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

颍上县| 本溪| 西华县| 和林格尔县| 木里| 育儿| 临朐县| 柯坪县| 沙雅县| 日土县| 乳源| 迭部县| 哈巴河县| 通州区| 长垣县| 汕头市| 兴隆县| 普格县| 平潭县| 黔南| 长乐市| 大安市| 民和| 怀宁县| 麻江县| 洪雅县| 万宁市| 汶川县| 克什克腾旗| 蕉岭县| 丹东市| 涿鹿县| 若尔盖县| 伊川县| 永善县| 留坝县| 洪江市| 龙口市| 广饶县| 黔南| 伊通|