您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Mybatis中動(dòng)態(tài)SQL,if,where,foreach怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Mybatis中動(dòng)態(tài)SQL,if,where,foreach怎么用”這篇文章吧。
MyBatis的動(dòng)態(tài)SQL是基于OGNL表達(dá)式的,它可以幫助我們方便的在SQL語句中實(shí)現(xiàn)某些邏輯。
MyBatis中用于實(shí)現(xiàn)動(dòng)態(tài)SQL的元素主要有:
if
choose(when,otherwise)
trim
where
set
foreach
mybatis核心 對(duì)sql語句進(jìn)行靈活操作,通過表達(dá)式進(jìn)行判斷,對(duì)sql進(jìn)行靈活拼接、組裝。
1、statement中直接定義使用動(dòng)態(tài)SQL:
在statement中利用if 和 where 條件組合達(dá)到我們的需求,通過一個(gè)例子來說明:
原SQL語句:
<select id="findUserByUserQuveryVo" parameterType ="UserQueryVo" resultType="UserCustom"> select * from user where username = #{userCustom.username} and sex = #{userCustom.sex} </select>
現(xiàn)在需求是,如果返回值UserCustom為空或者UserCustom中的屬性值為空的話(在這里就是userCustom.username或者userCustom.sex)為空的話我們?cè)趺催M(jìn)行靈活的處理是程序不報(bào)異常。做法利用if和where判斷進(jìn)行SQL拼接。
<select id="findUserByUserQuveryVo" parameterType ="UserQueryVo" resultType="UserCustom"> select * from user <where> <if test="userCustom != null"> <if test="userCustom.username != null and userCustom.username != ''"><!-- 注意and不能大寫 --> and username = #{userCustom.username} </if> <if test="userCustom.sex != null and userCustom.sex != ''"> and sex = #{userCustom.sex} </if> </if> </where> </select>
有時(shí)候我們經(jīng)常使用where 1=1這條語句來處理第一條拼接語句,我們可以使用< where > < where />來同樣實(shí)現(xiàn)這一功能。
2、使用sql片段來處理statement
和我們寫程序一樣,有時(shí)候會(huì)出現(xiàn)一些重復(fù)的代碼,我們可以用SQL片段來處理。在sql片段中需要注意的是它的位置,我們也可以引用其它mapper文件里面的片段,此時(shí)需要我們定義它的位置。
(1)、sql片段的定義
<sql id="query_user_where"> <if test="sex != null and sex != ''"> and sex = #{sex} </if> <if test="id != null"> and id = #{id} </if> </sql>
(2)、sql片段的使用
<select id="findUserList" parameterType="User" resultType="User"> select * from user <where> <!-- 引用Sql片段 --> <include refid="query_user_where"></include> <!-- 在這里還要引用其它的sql片段 --> <!-- where 可以自動(dòng)去掉條件中的第一個(gè)and --> <!-- <if test="sex != null and sex != ''"> and sex = #{sex} </if> <if test="id != null"> and id = #{id} </if> --> </where> </select>
3、使用foreach進(jìn)行sql語句拼接
在向sql傳遞數(shù)組或List,mybatis使用foreach解析,我們可以使用foreach中元素進(jìn)行sql語句的拼接,請(qǐng)求數(shù)據(jù)。
通過一個(gè)例子來看:
需求:SELECT * FROM USER WHERE id=1 OR id=10 OR id=16
或者:SELECT * FROM USER WHERE id IN(1,10,16)
<if test="ids != null"> <foreach collection="ids" item="user_id" open="AND (" close=")" separator="or" > 每次遍歷需要拼接的串 id= #{user_id} </foreach> </if>
其中,collection:指定輸入對(duì)象中集合屬性,item: 每個(gè)遍歷生成對(duì)象,open:開始遍歷時(shí)拼接串,close: 結(jié)束遍歷是拼接的串,separator: 遍歷的兩個(gè)對(duì)象中需要拼接的串
<if test="ids != null"> <foreach collection="ids" item="user_id" open="and id IN(" close=")" separator=","> id= #{user_id} </foreach> </if>
以上是“Mybatis中動(dòng)態(tài)SQL,if,where,foreach怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。