2020-07-20
好程序員
好程序員分享MyBatis之動態SQL語句,我們在進行項目開發時,經常遇到需要根據不同的需求,對原有SQL語句的內容進行修改,原來這是一個比較頭疼的問題,因為需要對原有SQL語句進行拼接、重組,費時費力還容易出錯,今天我們將學習MyBatis的動態SQL功能,可以解決這個問題。
動態SQL語句簡介
動態SQL語句是MyBatis的一個非常強大的功能,允許我們根據不同的需求,組合出不同的SQL語句,在select、update、insert、delete標簽中都可以添加動態SQL語句。
IF標簽
IF標簽可以在條件成立時,在SQL語句中插入IF標簽中的內容,不成立就不插入
示例:
<select id="selectUserByUser" parameterType="User" resultMap="userMap">
select * from tb_user where
<if test="realname != null">
u_realname=#{realname}
</if>
<if test="gender != null">
and u_gender=#{gender}
</if>
</select>
上面代碼中是按照User對象的各個屬性進行查詢,如果姓名不為空就插入姓名作為條件,如果性別不為空就插入性別作為條件。
但是我們會發現如果姓名為空,性別不為空,SQL語句就會變成:select * from tb_user where and u_gender=#{gender}
或者姓名、性別都為空就會變成:select * from tb_user where
這樣都會出現語法錯誤,這樣我們就需要下一個標簽:where
Where標簽
Where標簽 用于配置where條件,會去掉多余的and或or,如果一個條件都不成立,會自動去掉sql中的where。
代碼改為:
<select id="selectUserByUser" parameterType="User" resultMap="userMap">
select * from tb_user
<where>
<if test="realname != null">
u_realname=#{realname}
</if>
<if test="gender != null">
and u_gender=#{gender}
</if>
<if test="age != null">
and u_age=#{age}
</if>
</where>
</select>
這樣就不會出現上面可能的錯誤了
Trim標簽
上面where標簽的功能,也可以使用trim標簽實現,trim能去掉多余的前綴和后綴。
語法:
<trim prefix="前綴SQL" suffix="后綴" prefixOverrides="刪除前面的符號" suffixOverrides="刪除后面的符號">
<if標簽>
</trim>
示例:
<trim prefix="where" prefixOverrides="and|or">
...
</trim>
Set標簽
用于配置update語句中的set部分,可以自動添加set關鍵字,刪除多余的逗號
示例:
<update id="update" parameterType="User">
update tb_user
<set>
<if test="name != null">
u_name=#{name},
</if>
<if test="password != null">
u_password=#{password},
</if>
</set>
where u_id=#{id}
</update>
也可以使用trim實現:
<trim prefix="set" suffixOverrides=",">
<if test="name != null">
u_name=#{name},
</if>
...
</trim>
Foreach標簽
用于循環遍歷集合或數組的值,如:按多個人姓名查詢
select * from tb_user where u_realname in ('張三','李四'....)
語法:
<foreach collection="集合名" item="變量名" index="下標名" open="開始符號" close="結束符號" seperator="分割符號">
#{變量名}
</foreach>
注意:集合名在Mapper接口中需要使用@Param注解配置
示例:
<select id="selectUserByRealnames" resultMap="userMap">
select * from tb_user where u_realname in
<foreach collection="realnames" item="name" index="i" separator="," open="(" close=")">
#{name}
</foreach>
</select>
Choose標簽
Java中有if,也會有if-else、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 like #{author}
</when>
<otherwise>
AND featured = 1
</otherwise>
</choose>
</select>
這里從diyi個when進行判斷,如果成立就插入條件,結束choose標簽,如果不成立再判斷下一個when,如果所有when都不成立,就插入otherwise中的語句。
總結
動態SQL語句是MyBatis非常重要的特性,能夠讓我們根據不同需求組合SQL語句,而且不容易出錯。動態SQL的標簽有:if、where、set、choose、foreach等。掌握好它們我們可以寫出更加靈活、高效的數據庫操作代碼。
開班時間:2021-04-12(深圳)
開班盛況開班時間:2021-05-17(北京)
開班盛況開班時間:2021-03-22(杭州)
開班盛況開班時間:2021-04-26(北京)
開班盛況開班時間:2021-05-10(北京)
開班盛況開班時間:2021-02-22(北京)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2020-09-21(上海)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2019-07-22(北京)
開班盛況Copyright 2011-2023 北京千鋒互聯科技有限公司 .All Right 京ICP備12003911號-5 京公網安備 11010802035720號