天天看點

動态SQL( if, choose, when, otherwise, trim, where, set, foreach标簽講解)1 動态SQL#2 if: 你們能判斷,我也能判斷!#3 where, 有了我,SQL語句拼接條件神馬的都是浮雲!#4 trim : 我的地盤,我做主!#5 set: 信我,不出錯!#6 foreach: 你有for, 我有foreach, 不要以為就你才屌!#7 choose: 我選擇了你,你選擇了我!#

1 動态SQL#

那麼,問題來了: 什麼是動态SQL? 動态SQL有什麼作用?

傳統的使用JDBC的方法,相信大家在組合複雜的的SQL語句的時候,需要去拼接,稍不注意哪怕少了個空格,都會導緻錯誤。Mybatis的動态SQL功能正是為了解決這種問題, 其通過 if, choose, when, otherwise, trim, where, set, foreach标簽,可組合成非常靈活的SQL語句,進而提高開發人員的效率。下面就去感受Mybatis動态SQL的魅力吧。

2 if: 你們能判斷,我也能判斷!#

作為程式猿,誰不懂 if ! 在mybatis中也能用 if 啦:

<select id="findUserById" resultType="user">
    select * from user where 
        <if test="id != null">
               id=#{id}
        </if>
    and deleteFlag=0;
</select>
           

上面例子: 如果傳入的id 不為空, 那麼才會SQL才拼接id = #{id}。 這個相信大家看一樣就能明白,不多說。細心的人會發現一個問題:“你這不對啊! 要是你傳入的id為null, 那麼你這最終的SQL語句不就成了 select * from user where and deleteFlag=0, 這語句有問題!”

是啊,這時候,mybatis的 where 标簽就該隆重登場啦。

3 where, 有了我,SQL語句拼接條件神馬的都是浮雲!#

咱們通過where改造一下上面的例子:

<select id="findUserById" resultType="user">
    select * from user 
        <where>
            <if test="id != null">
                id=#{id}
            </if>
            and deleteFlag=0;
        </where>
</select>
           

有些人就要問了: “你這都是些什麼玩意兒! 跟上面的相比, 不就是多了個where标簽嘛! 那這個還會不會出現 select * from user where and deleteFlag=0 ?”

的确,從表面上來看,就是多了個where标簽而已, 不過實質上, mybatis是對它做了處理,當它遇到AND或者OR這些,它知道怎麼處理。其實我們可以通過 trim 标簽去自定義這種處理規則。

4 trim : 我的地盤,我做主!#

上面的where标簽,其實用trim 可以表示如下:

<trim prefix="WHERE" prefixOverrides="AND |OR ">
    ... 
</trim>
           
它的意思就是:當WHERE後緊随AND或則OR的時候,就去除AND或者OR。 除了WHERE以外,其實還有一個比較經典的實作,那就是SET。

5 set: 信我,不出錯!#

<update id="updateUser" parameterType="com.dy.entity.User">
    update user set 
        <if test="name != null">
            name = #{name},
        </if> 
        <if test="password != null">
            password = #{password},
        </if> 
        <if test="age != null">
            age = #{age}
        </if> 
        <where>
            <if test="id != null">
                id = #{id}
            </if>
            and deleteFlag = 0;
        </where>
</update>
           

問題又來了: “如果我隻有name不為null, 那麼這SQL不就成了 update set name = #{name}, where ........ ? 你那name後面那逗号會導緻出錯啊!”

是的,這時候,就可以用mybatis為我們提供的set 标簽了。下面是通過set标簽改造後:

<update id="updateUser" parameterType="com.dy.entity.User">
    update user
        <set>
            <if test="name != null">name = #{name},</if> 
            <if test="password != null">password = #{password},</if> 
            <if test="age != null">age = #{age},</if> 
        </set>
        <where>
            <if test="id != null">
                id = #{id}
            </if>
            and deleteFlag = 0;
        </where>
</update>
           

這個用trim 可表示為:

<trim prefix="SET" suffixOverrides=",">
  ...
</trim>
           
WHERE是使用的 prefixOverrides(字首), SET是使用的 suffixOverrides (字尾), 看明白了吧!

6 foreach: 你有for, 我有foreach, 不要以為就你才屌!#

java中有for, 可通過for循環, 同樣, mybatis中有foreach, 可通過它實作循環,循環的對象當然主要是java容器和數組。

<select id="selectPostIn" resultType="domain.blog.Post">
    SELECT *
    FROM POST P
    WHERE ID in
    <foreach item="item" index="index" collection="list"
        open="(" separator="," close=")">
        #{item}
    </foreach>
</select>
           

将一個 List 執行個體或者數組作為參數對象傳給 MyBatis:當這麼做的時候,MyBatis 會自動将它包裝在一個 Map 中并以名稱為鍵。List 執行個體将會以“list”作為鍵,而數組執行個體的鍵将是“array”。

同樣,當循環的對象為map的時候,index其實就是map的key。

7 choose: 我選擇了你,你選擇了我!#

Java中有switch, mybatis有choose。

<select id="findActiveBlogLike"
     resultType="Blog">
    SELECT * FROM BLOG WHERE state = ‘ACTIVE’
    <choose>
        <when test="title != null">
            AND title like #{title}
        </when>
        <when test="author != null and author.name != null">
            AND author_name like #{author.name}
        </when>
        <otherwise>
            AND featured = 1
        </otherwise>
    </choose>
</select>
           
以上例子中:當title和author都不為null的時候, 那麼選擇二選一(前者優先), 如果都為null, 那麼就選擇 otherwise中的, 如果tilte和author隻有一個不為null, 那麼就選擇不為null的那個。