溫馨提示×

溫馨提示×

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

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

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

發(fā)布時間:2022-06-13 15:51:02 來源:億速云 閱讀:785 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

在注解上實(shí)現(xiàn)動態(tài)SQL

使用Mybatis注解實(shí)現(xiàn)sql語句,但是有些時候有些字段是空的,這時候這個空的字段就要從條件查詢語句中刪除,這個時候就需要用到動態(tài)Sql。

注解的動態(tài)語句支持以下

  • trim

  • where

  • set

  • foreach

  • if

  • choose

  • when

  • otherwise

  • bind

@Select({"<script> " +
        "select * from t_user " +
        "where  1=1 " +
        "<if test='userId!=null'> and id = #{userId}</if> " +
        "</script>"})

要加上標(biāo)簽就可以實(shí)現(xiàn)條件判斷

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

但是在無法使用大于號 、小于號,那如何解決這問題呢,其實(shí)只要把大于號、小于號轉(zhuǎn)義即可

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

注解方式動態(tài)sql寫法和注意事項

@Select({"<script>" +
            "select * from tb_examine" +
            "<where> 1 = 1" +
            "<if test = \" employeeId != null and  employeeId != '' \"> AND employee_id = #{employeeId} </if>" +
            "<if test = \" gradeId != null and gradeId != '' \"> AND grade_id = #{gradeId} </if>" +
            "<if test = \" year != null and year != '' \"> AND year like #{year} </if>" +
            "<if test = \" (statrMonth != null and statrMonth != '') and (endMonth == null or endMonth == '') \"> AND month &gt;= #{statrMonth} </if>" +
            "<if test = \" (statrMonth == null or  statrMonth == '') and (endMonth != null and endMonth != '')   \"> AND month &lt;= #{endMonth} </if>" +
            "<if test = \" (statrMonth != null and statrMonth != '') and (endMonth != null and endMonth != '')   \">AND month &gt;= #{statrMonth} AND month &lt;= #{endMonth}  </if>" +
            "</where>" +
            "</script>"})
public List<Examine> getName(Examine examine);

判斷字符串為空串 用單引號

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

大于等于用

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

小于等于用

Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL

讀到這里,這篇“Mybatis在注解上怎么實(shí)現(xiàn)動態(tài)SQL”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI