1. 程式人生 > >MyBatis 詳解 ------ 動態SQL

MyBatis 詳解 ------ 動態SQL

用mybatis對一張表進行的CRUD操作時,寫的 SQL 語句都比較簡單,如果有比較複雜的業務,寫複雜的 SQL 語句,往往需要拼接,而拼接 SQL ,稍微不注意,由於引號,空格等缺失可能都會導致錯誤。
那麼怎麼去解決這個問題呢?這將使用 MyBatis 動態SQL,通過 if, choose, when, otherwise, trim, where, set, foreach等標籤,可組合成非常靈活的SQL語句,從而在提高 SQL 語句的準確性的同時,也能大大提高了開發效率。

1、動態SQL: if 語句

根據 username 和 sex 來查詢資料。如果username為空,那麼將只根據sex來查詢;反之只根據username來查詢
首先不使用 動態SQL 來書寫

<select id="selectUserByUsernameAndSex"
        resultType="user" parameterType="com.ys.po.User">
    <!-- 這裡和普通的sql 查詢語句差不多,對於只有一個引數,後面的 #{id}表示佔位符,
    裡面不一定要寫id,寫啥都可以,但是不要空著,如果有多個引數則必須寫pojo類裡面的屬性 -->
    select * from user where username=#{username} and sex=#{sex}
</select>

上面的查詢語句,我們可以發現,如果#{username}

為空,那麼查詢結果也是空,如何解決這個問題呢?使用 if 來判斷

<select id="selectUserByUsernameAndSex" resultType="user" parameterType="com.ys.po.User">
    select * from user where
        <if test="username != null">
           username=#{username}
        </if>

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

這樣寫我們可以看到,如果 sex 等於 null,那麼查詢語句為
select * from user where username=#{username}
但是如果usename 為空呢?那麼查詢語句為
select * from user where and sex=#{sex}
這是錯誤的 SQL 語句,如何解決呢?請看下面的 where 語句

2、動態SQL: if+where 語句

<select id="selectUserByUsernameAndSex" resultType="user" parameterType="com.ys.po.User">
    select * from user
    <where>
        <if test="username != null">
           username=#{username}
        </if>

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

這個“where”標籤會知道如果它包含的標籤中有返回值的話,它就插入一個‘where’。此外,如果標籤返回的內容是以AND 或OR 開頭的,則它會剔除掉。

3、動態SQL: if+set 語句

同理,上面的對於查詢 SQL 語句包含 where 關鍵字,如果在進行更新操作的時候,含有 set 關鍵詞,我們怎麼處理呢?

<!-- 根據 id 更新 user 表的資料 -->
<update id="updateUserById" parameterType="com.ys.po.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>

這樣寫:
如果第一個條件 username 為空,那麼 sql 語句為:
update user u set u.sex=? where id=?
如果第一個條件不為空,那麼 sql 語句為:
update user u set u.username = ? ,u.sex = ? where id=?

4、動態SQL: choose(when,otherwise) 語句

有時候,我們不想用到所有的查詢條件,只想選擇其中的一個,查詢條件有一個滿足即可,使用 choose 標籤可以解決此類問題,類似於 Java 的 switch 語句

<select id="selectUserByChoose" resultType="com.ys.po.User" parameterType="com.ys.po.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>

也就是說,這裡我們有三個條件,id, username, sex,只能選擇一個作為查詢條件
如果 id 不為空,那麼查詢語句為:
select * from user where id=?
如果 id 為空,那麼看username 是否為空,如果不為空,那麼語句為
select * from user where username=?;
如果 username 為空,那麼查詢語句為
select * from user where sex=?

5、動態SQL: trim 語句

trim標記是一個格式化的標記,可以完成set或者是where標記的功能

  • 用 trim 改寫上面第二點的 if+where 語句
<select id="selectUserByUsernameAndSex" resultType="user" parameterType="com.ys.po.User">
        select * from user
        <!-- <where>
            <if test="username != null">
               username=#{username}
            </if>

            <if test="username != null">
               and sex=#{sex}
            </if>
        </where>  -->
        <trim prefix="where" prefixOverrides="and | or">
            <if test="username != null">
               and username=#{username}
            </if>
            <if test="sex != null">
               and sex=#{sex}
            </if>
        </trim>
    </select>

suffix:字尾
suffixoverride:去掉最後一個逗號(也可以是其他的標記,就像是上面字首中的and一樣)

6、動態SQL: SQL 片段

有時候可能某個 sql 語句我們用的特別多,為了增加程式碼的重用性,簡化程式碼,我們需要將這些程式碼抽取出來,然後使用時直接呼叫。
比如:我們需要經常根據使用者名稱和性別來進行聯合查詢,那就可以把這個程式碼抽取出來:

  • 編寫sql片段
<!-- 定義 sql 片段 -->
<sql id="selectUserByUserNameAndSexSQL">
    <if test="username != null and username != ''">
        AND username = #{username}
    </if>
    <if test="sex != null and sex != ''">
        AND sex = #{sex}
    </if>
</sql>
  • 引用 sql 片段
<select id="selectUserByUsernameAndSex" resultType="user" parameterType="com.ys.po.User">
    select * from user
    <trim prefix="where" prefixOverrides="and | or">
        <!-- 引用 sql 片段,如果refid 指定的不在本檔案中,那麼需要在前面加上 namespace -->
        <include refid="selectUserByUserNameAndSexSQL"></include>
        <!-- 在這裡還可以引用其他的 sql 片段 -->
    </trim>
</select>

注意:①、最好基於 單表來定義 sql 片段,提高片段的可重用性
   ②、在 sql 片段中不要包括 where

7、動態SQL: foreach 語句

需求:我們需要查詢 user 表中 id 分別為1,2,3的使用者
sql語句:
select * from user where id=1 or id=2 or id=3
select * from user where id in (1,2,3)

  • 建立一個 UserVo 類,裡面封裝一個 List ids 的屬性
public class UserVo {
    //封裝多個使用者的id
    private List<Integer> ids;

    public List<Integer> getIds() {
        return ids;
    }

    public void setIds(List<Integer> ids) {
        this.ids = ids;
    } 
}  
  • 我們用 foreach 來改寫 select * from user where id=1 or id=2 or id=3
<select id="selectUserByListId" parameterType="com.ys.vo.UserVo" resultType="com.ys.po.User">
    select * from user
    <where>
        <!--
            collection:指定輸入物件中的集合屬性
            item:每次遍歷生成的物件
            open:開始遍歷時的拼接字串
            close:結束時拼接的字串
            separator:遍歷物件之間需要拼接的字串
            select * from user where 1=1 and (id=1 or id=2 or id=3)
          -->
        <foreach collection="ids" item="id" open="and (" close=")" separator="or">
            id=#{id}
        </foreach>
    </where>
</select>

測試:

//根據id集合查詢user表資料
@Test
public void testSelectUserByListId(){
    String statement = "com.ys.po.userMapper.selectUserByListId";
    UserVo uv = new UserVo();
    List<Integer> ids = new ArrayList<>();
    ids.add(1);
    ids.add(2);
    ids.add(3);
    uv.setIds(ids);
    List<User> listUser = session.selectList(statement, uv);
    for(User u : listUser){
        System.out.println(u);
    }
    session.close();
}
  • 我們用 foreach 來改寫 select * from user where id in (1,2,3)
<select id="selectUserByListId" parameterType="com.ys.vo.UserVo" resultType="com.ys.po.User">
        select * from user
        <where>
            <!--
                collection:指定輸入物件中的集合屬性
                item:每次遍歷生成的物件
                open:開始遍歷時的拼接字串
                close:結束時拼接的字串
                separator:遍歷物件之間需要拼接的字串
                select * from user where 1=1 and id in (1,2,3)
              -->
            <foreach collection="ids" item="id" open="and id in (" close=") " separator=",">
                #{id}
            </foreach>
        </where>
</select>

8、總結

其實動態 sql 語句的編寫往往就是一個拼接的問題,為了保證拼接準確,我們最好首先要寫原生的 sql 語句出來,然後在通過 mybatis 動態sql 對照著改,防止出錯。

相關推薦

mybatis ------動態SQL

soc int 表示 ssi 性別 ace cin override 博客 目錄 1、動態SQL:if 語句 2、動態SQL:if+where 語句 3、動態SQL:if+set 語句 4、動態SQL:choose(when,otherwise) 語句 5、動態SQL

MyBatis ------ 動態SQL

用mybatis對一張表進行的CRUD操作時,寫的 SQL 語句都比較簡單,如果有比較複雜的業務,寫複雜的 SQL 語句,往往需要拼接,而拼接 SQL ,稍微不注意,由於引號,空格等缺失可能都會導致錯誤。 那麼怎麼去解決這個問題呢?這將使用 MyBatis 動

mybatis (五)------動態SQL

調用 otherwise efi 實例 其中 參數 sep 引用 完成 目錄 1、動態SQL:if 語句 2、動態SQL:if+where 語句 3、動態SQL:if+set 語句 4、動態SQL:choose(when,otherwise) 語句 5、動態SQL:tr

MyBatis之Mapper XML 文件(二)-sql和入參

java mybatis sql 參數 mapper sql這個元素可以被用來定義可重用的 SQL 代碼段,可以包含在其他語句中。它可以被靜態地(在加載參數) 參數化. 不同的屬性值通過包含的實例變化. 比如:<sql id="userColumns"> $

mybatis-(12)配置多種資料庫SQL解析

前一篇介紹了mybatis配置多個數據源,可以切換不同的資料庫環境。有一種情況:比如一個系統中使用了多個數據源,系統該怎麼判別每個sql語句使用的是哪種型別資料庫的語法呢?mybatis提供了一種方法,可以在配置檔案中指定每個sql語句使用的是哪種資料庫語法,執

mybatis如何實現批量更新和插入新增例項(附SQL以及mapper配置)

Mybatis批量插入、批量修改 批量插入 step1:建立DB表 CREATE TABLE `student_info` ( `STUDENT_ID` BIGINT(20) NOT NULL A

MyBatis

esp resources myba 用法 管理 build oct ace 詳細信息 本文用例下載地址 http://files.cnblogs.com/files/gaofei-1/MyBatisDemo.rar 本文使用的是MySQL數據庫,所需SQL

mybatis (一)------JDBC

jdbc javax 發出 一段 true his 實例 用戶名 移植 1、什麽是MyBatis?   MyBatis 本是apache的一個開源項目iBatis, 2010年這個項目由apache software foundation 遷移到了google code,

mybatis (二)------入門實例(基於XML)

ssi 開發模式 文件中 Coding import 拼接 upd baidu actor   通過上一小節,mybatis 和 jdbc 的區別:http://www.cnblogs.com/ysocean/p/7271600.html,我們對 mybatis有了一個大致

mybatis (七)------一對一、一對多、多對多

不變 角色 導入 ctu transacti stat 工程 build -1   前面幾篇博客我們用mybatis能對單表進行增刪改查操作了,也能用動態SQL書寫比較復雜的sql語句。但是在實際開發中,我們做項目不可能只是單表操作,往往會涉及到多張表之間的關聯操作。那麽我

Mybatis框架之動態SQL書寫方式小結

用戶輸入 ... pre efi date emp 表達式 內容 字符 動態SQL簡介 動態SQL是Mybatis框架中強大特性之一。在一些組合查詢頁面,需要根據用戶輸入的查詢條件生成不同的查詢SQL,這在JDBC或其他相似框架中需要在代碼中拼寫SQL,經常容易出錯,在My

mybatis註解開發-動態SQL

sql語句 com jdbc new info ets stat -- -s 實體類以及表結構 在mybatis-config.xml中註冊mapper接口 -------------------------- 動態查詢@SelectProvider Emp

Spring boot 配置 mybatis xml和動態SQL

star too conn -- 動態 div nec output out 1.pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="

spring boot-mybatis三種動態sql(5)

內部 轉換成 ava .get bat class ide div upd 腳本sql XML配置方式的動態SQL我就不講了,有興趣可以自己了解,下面是用<script>的方式把它照搬過來,用註解來實現。適用於xml配置轉換到註解配置 @Select("&l

SELECT INTO 和 INSERT INTO SELECT 兩種表複製語句SQL資料庫和Oracle資料庫的區別)

https://www.cnblogs.com/mq0036/p/4155136.html 我們經常會遇到需要表複製的情況,如將一個table1的資料的部分欄位複製到table2中,或者將整個table1複製到table2中,這時候我們就要使用SELECT INTO 和 INSER

mybatis (三)------入門例項(基於註解)

目錄 1、建立MySQL資料庫:mybatisDemo和表:user 2、建立一個Java工程,並匯入相應的jar包,具體目錄如下 3、在 MyBatisTest 工程中新增資料庫配置檔案 mybatis-configuration.xml 4、定義表所對應的實體

mybatis (六)------通過mapper介面載入對映檔案

目錄 1、定義 userMapper 介面 2、在全域性配置檔案 mybatis-configuration.xml 檔案中載入 UserMapper 介面(單個載入對映檔案) 3、編寫UserMapper.xml 檔案 4、測試 5、批量載入對映檔案 6、注意

mybatis (六)------通過mapper接口加載映射文件

實體類 數據庫 pda and pack trim .get 查詢語句 :after 目錄 1、定義 userMapper 接口 2、在全局配置文件 mybatis-configuration.xml 文件中加載 UserMapper 接口(單個加載映射文件) 3、編寫

mybatis (八)------ 懶載入

目錄 1、需求:查詢訂單資訊,有時候需要關聯查出使用者資訊。 2、什麼是懶載入? 3、具體例項 4、總結   本章我們講如何通過懶載入來提高mybatis的查詢效率。   本章所有程式碼:百度雲盤/java例項/java框架—mybatis/mybatis懶載入.zip

MyBatis學習之動態SQL

1、概述 MyBatis最為強大的部分是提供了動態SQL的支援,一些查詢邏輯可以直接在xml中完成,大大簡化了我們的操作,體現出了MyBatis的靈活性、拓展性、和可維護性。 MyBatis中的四大動態SQL元素: if choose (when, otherw