MyBatis理解與掌握(動態SQL)

MyBatis理解與掌握(動態SQL)

@(MyBatis)[Java, 框架, MyBatis]java

if

if 就是__簡單的條件判斷 __,利用if語句咱們能夠實現某些簡單的條件選擇。
先來看以下一個例子:sql

<select id="selectUserByUserNameAndSex" resultType="com.george.pojo.User" parameterType="com.george.pojo.User">
    select * from user where
        <if test="userName != null">
           username=#{userName}
        </if>
         
        <if test="userName != null">
           and sex=#{sex}
        </if>
</select>

在JDBC中若是要實現條件查詢,採用的是拼串的方式,並且sql語句每每和java代碼混雜在一塊兒,很是麻煩。數組

choose(when,otherwise)

choose元素的做用就至關於JAVA中的switch語句,基本上跟JSTL中的choose的做用和用法是同樣的,一般都是與when和otherwise搭配的。看以下一個例子:框架

<select id="selectUserByChoose" resultType="com.george.pojo.User" parameterType="com.george.pojo.User">
      select * from user
      <where>
          <choose>
              <when test="id !='' and id != null">
                  id=#{id}
              </when>
              <when test="userName !='' and userName != null">
                  and username=#{userName}
              </when>
              <otherwise>
                  and sex=#{sex}
              </otherwise>
          </choose>
      </where>
  </select>

when元素表示當when中的 條件知足的時候就輸出其中的內容 ,只有一個會輸出 ,當title!=null的時候就輸出and titlte = #{title},再也不往下判斷條件,當title爲空且content!=null的時候就輸出and content = #{content},當全部條件都不知足的時候就輸出otherwise中的內容。ide

where

where語句的做用主要是 簡化SQL語句中where中的條件判斷 ,先看一個例子,再解釋一下where的好處。url

<select id="selectUserByUserNameAndSex" resultType="com.george.pojo.User" parameterType="com.george.pojo.User">
    select * from user
    <where>
        <if test="userName != null">
           username=#{userName}
        </if>
         
        <if test="userName != null">
           and sex=#{sex}
        </if>
    </where>
</select>

(1)會在寫入where元素的地方輸出一個where
(2)若是全部的條件都不知足那麼MyBatis就會查出全部的記錄
(3)若是輸出後是and 開頭的,MyBatis會把第一個and忽略,固然若是是or開頭的,MyBatis也會把它忽略
(4)在where元素中你不須要考慮空格的問題,MyBatis會智能的幫你加上code

trim

<insert id="addBrand" parameterType="Brand">
    insert into bbs_brand
    <trim prefix="(" suffix=")">
     name,
     description,
     img_url,
     sort,
     is_display
    </trim>
    values
    <trim prefix="(" suffix=")">
     #{name},
     #{description},
     #{imgUrl},
     #{sort},
     #{isDisplay}
    </trim>
</insert>

trim元素的主要功能是能夠在本身包含的內容前加上某些前綴,也能夠在其後加上某些後綴,與之對應的屬性是prefixsuffix.
能夠把包含內容的首部某些內容覆蓋,即忽略,也能夠把尾部的某些內容覆蓋,對應的屬性是prefixOverridessuffixOverridesxml

set

set元素主要是用 在更新操做的時候在包含的語句前輸出一個set 。
有了set元素咱們就能夠動態的更新那些修改了的字段。下面是一段示例代碼:對象

<update id="updateUserById" parameterType="com.george.pojo.User">
    update user u
        <set>
            <if test="userName != null and userName != ''">
                u.username = #{userName},
            </if>
            <if test="sex != null and sex != ''">
                u.sex = #{sex}
            </if>
        </set>
     
     where id=#{id}
</update>

(1)若是包含的語句是以逗號結束的話將會把該逗號忽略
(2)若是set包含的內容爲空的話則會出錯blog

foreach

foreach的主要用在 構建in條件中 ,它能夠在SQL語句中進行迭代一個集合

foreach元素的屬性主要有:

  • item表示集合中每個元素進行迭代時的別名
  • index指定一個名字,用於表示在迭代過程當中,每次迭代到的位置
  • open表示該語句以什麼開始
  • separator表示在每次進行迭代之間以什麼符號做爲分隔符
  • close表示以什麼結束
  • collection屬性,該屬性是必須指定的,可是在不一樣狀況下,該屬性的值是不同的,主要有一下3種狀況:

(1)果傳入的是單參數且參數類型是一個List的時候,collection屬性值爲list

<select id="dynamicForeachTest" resultType="Blog">
select * from t_blog where id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")" >
    #{item}
</foreach>
</select>
public List<Blog> dynamicForeachTest(List<Integer> ids);

(2)若是傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值爲array

<select id="dynamicForeach2Test" resultType="Blog">
select * from t_blog where id in
<foreach collection="array" index="index" item="item" open="(" separator="," close=")" >
    #{item}
</foreach>
</select>
public List<Blog> dynamicForeach2Test(int[] ids);

(3)若是傳入的參數是多個的時候,咱們就須要把它們封裝成一個Map了,因此這個時候collection屬性值就是傳入的List或array對象在本身封裝的map裏面的key

<select id="dynamicForeach3Test" resultType="Blog">
select * from t_blog where title like "%"#{title}"%" and id in
<foreach collection="ids" index="index" item="item" open="(" separator="," close=")" >
    #{item}
</foreach>
</select>
public List<Blog> dynamicForeach3Test(Map<String, Object> params);

基於3.3.1版本驗證的新特性
(4)foreach標籤遍歷的集合元素類型是Map.Entry類型時,index屬性指定的變量表明對應的Map.Entry的key,item屬性指定的變量表明對應的Map.Entry的value。此時若是對應的集合是Map.entrySet,則對應的collection屬性用collection。foreach在進行遍歷的時候若是傳入的參數是List類型,則其collection屬性的值能夠是list或collection,但若是傳入的參數是Set類型,則collection屬性的值只能用collection。

<select id="dynamicForeach2Test" resultType="Blog">
select * from t_blog where id in
<!-- 遍歷的對象是Map.Entity時,index表明對應的Key,item表明對應的value   -->
<foreach collection="collection" index="key" item="value" open="(" separator="," close=")" >
    #{key},#{value}
</foreach>
</select>
public List<Blog> dynamicForeachTest(Set<Map.Entry<Integer, Integer>> ids);

bind

bind標籤,動態SQL中已經包含了這樣一個新的標籤,它的功能是在當前OGNL上下文中建立一個變量並綁定一個值。
有了它之後咱們之前的模糊查詢就能夠改爲這個樣子:

<select id="fuzzyQuery" resultType="Blog" parameterType="java.lang.String">
<!-- bind標籤用於建立新的變量   -->
  <bind name="titleLike" value="'%' + _parameter + '%'" />
  SELECT * FROM t_blog
  WHERE title LIKE #{titleLike}
</select>
相關文章
相關標籤/搜索