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

溫馨提示×

溫馨提示×

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

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

MyBatis動態SQL怎么實現

發布時間:2022-04-27 13:42:07 來源:億速云 閱讀:139 作者:iii 欄目:開發技術

這篇文章主要介紹了MyBatis動態SQL怎么實現的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇MyBatis動態SQL怎么實現文章都會有所收獲,下面我們一起來看看吧。

mybatis最強大的功能之一便是它的動態sql能力

       借用官方文檔的一段話 : 如果您以前有使用JDBC或者類似框架的 經歷,您就會明白把SQL語句條件連接在一起是多么的痛苦,要確保不能忘記空格或者不要在 columns列后面省略一個逗號等。動態語句能夠完全解決掉這些痛苦。

那么如果沒有這種功能到底有多痛苦呢 ? 我們來舉例說明

MyBatis動態SQL怎么實現

       這是一張表 , 試想如果我們通過 name 和 age來查詢表信息時 , sql語句中肯定會存在 where和and字句 , 但是如果 name或者age 有一個為null或者都為null , 那么此時的 where 和and就會被孤立,那么這樣肯定會出現很多問題 , 所以mybatis的動態sql功能幫助我們完美解決

MyBatis 中用于實現動態 SQL 的元素主要有:

If   where   trim   set  choose(when, otherwise)   foreach

if和where

<select id="selectAllEmployee1" resultMap="employeeMap2" parameterType="Employee">
   SELECT e.id,e.name ename,e.age,d.name dname FROM employee e
      LEFT JOIN dept d ON e.deptId = d.id
<where>
    <if test="name!=null &amp; name!=''">
         e.name =#{name}
    </if>
    <if test="age!=null &amp; age!=''">
         and e.age =#{age}
    </if>
</where>
</select>

使用這種標簽 , 動態sql可以根據 條件來自動幫我們完善sql 

SqlSession sqlSession= MybatisUtil.getSqlSession();
EmployeeDao mapper=sqlSession.getMapper(EmployeeDao.class);
//創建一個對象,set值
Employee employee = new Employee();
employee.setName("");
employee.setAge(null);
List<Employee> employees = mapper.selectAllEmployee1(employee);
System.out.println(employees);
sqlSession.commit();
sqlSession.close();

第一次我們都設置null值, 表中數據完全被查詢

MyBatis動態SQL怎么實現

第二次我們只查詢年齡

employee.setName("");
employee.setAge(20);

MyBatis動態SQL怎么實現

查詢到兩條年齡為20的數據 , 這就是mybatis動態sql的強大之處

trim

上述的 where 與 if 我們也可以使用 trim 來代替where 

<select id="selectAllEmployee1" resultMap="employeeMap2" parameterType="Employee">
     SELECT e.id,e.name ename,e.age,d.name dname FROM employee e
     LEFT JOIN dept d ON e.deptId = d.id
     <trim prefix="where" prefixOverrides="or|and">
        <if test="name!=null &amp; name!=''">
            e.name =#{name}
        </if>
        <if test="age!=null &amp; age!=''">
            and e.age =#{age}
        </if>
     </trim>
</select>

這里有兩個屬性 prefix , prefixOverrides

prefix : 代表前綴 , 如果if 中有成立的條件, 就會在sql前面拼入where字句

prefixOverrides :  根據if 條件自動判斷是否去除 or | and字句

相應的也有suffix與suffixOverrides , 代表對尾部的判斷

Choose

choose代表多路選擇(多選一)

<select id="selectAllEmployee1" resultMap="employeeMap2" parameterType="Employee">
        SELECT e.id,e.name ename,e.age,d.name dname FROM employee e
        LEFT JOIN dept d ON e.deptId = d.id
        <trim prefix="where" prefixOverrides="or|and">
            <choose>
                <when test="name!=null &amp; name!=''">
                    and e.name =#{name}
                </when>
                <when test="age!=null">
                    and e.age =#{age}
                </when>
                <otherwise>
                    and e.name ='李雷'
                </otherwise>
            </choose>
        </trim>
    </select>

當<when>中的條件成立時, 走when中的語句,都不成立走<otherwise>

Set

set 可以根據條件自動添加set字句,動態更新列,也可以來剔除追加到條件末尾的任何不相關的逗號

<update id="updateEmployee">
        update employee
        <set>
            <if test="name!=null &amp; name!=''">
                name=#{name},
            </if>
            <if test="age!=null">
                age=#{age},
            </if>
        </set>
        where id=#{id}
    </update>

foreach

       <foreach> 主要用在構建 in 條件中,它可以在 SQL 語句中進行迭代一個集合。foreach元素的屬性主要有 item,index,collection,open,separator,close。 item 表示集合中每一個元素進行迭代時的別名,index 指定一個名字,用于表示在迭代過程中,每次迭代到的位置,open 表示該語句以什么開始, separator 表示在每次進行迭代之間以什么符號作為分隔符,close 表示以什么結束,在使用 foreach 的時候最關鍵的也是最容易出錯的就是 collection 屬性,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的。

&ndash; 如果傳入的是單參數且參數類型是一個 List 的時候,collection 屬 性值為 list

&ndash; 如果傳入的是單參數且參數類型是一個 array 數組的時候, collection 的屬性值為array

//創建一個list集合
List<Integer> list = new ArrayList<>();
list.add(19);
list.add(20);
List<Employee> employees = mapper.selectAllEmployee2(list);

接口方法如下 : 

  List<Employee> selectAllEmployee2(List<Integer> list);

對應動態sql如下 : 

<select id="selectAllEmployee2" resultMap="employeeMap2" parameterType="Employee">
        SELECT e.id,e.name ename,e.age,d.name dname FROM employee e
        LEFT JOIN dept d ON e.deptId = d.id where age in
        <foreach collection="list" item="age" open="(" separator="," close=")">
             #{age}
        </foreach>
    </select>

這里我們傳入的是一個集合, 所以參數選擇 list , 通過foreach我們可以動態的根據集合里的值來查詢

關于“MyBatis動態SQL怎么實現”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“MyBatis動態SQL怎么實現”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

灵台县| 民勤县| 得荣县| 永兴县| 霍林郭勒市| 尉犁县| 镇平县| 徐汇区| 信阳市| 新河县| 蒲城县| 营山县| 江津市| 永福县| 武冈市| 集安市| 安泽县| 宾阳县| 临城县| 广东省| 乌审旗| 监利县| 台东市| 于都县| 平武县| 运城市| 沅江市| 名山县| 叙永县| 镇雄县| 高州市| 尉氏县| 平遥县| 辛集市| 普洱| 镇沅| 麻栗坡县| 道真| 陕西省| 长兴县| 松阳县|