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

溫馨提示×

溫馨提示×

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

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

Mybatis在注解上怎么實現動態SQL

發布時間:2022-06-13 15:51:02 來源:億速云 閱讀:786 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Mybatis在注解上怎么實現動態SQL”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Mybatis在注解上怎么實現動態SQL”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

在注解上實現動態SQL

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

注解的動態語句支持以下

  • 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>"})

要加上標簽就可以實現條件判斷

Mybatis在注解上怎么實現動態SQL

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

Mybatis在注解上怎么實現動態SQL

Mybatis在注解上怎么實現動態SQL

注解方式動態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在注解上怎么實現動態SQL

大于等于用

Mybatis在注解上怎么實現動態SQL

小于等于用

Mybatis在注解上怎么實現動態SQL

讀到這里,這篇“Mybatis在注解上怎么實現動態SQL”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

福州市| 黔西县| 视频| 江达县| 大丰市| 莱西市| 扶绥县| 莲花县| 阜平县| 宝坻区| 盐边县| 册亨县| 五华县| 门源| 岑溪市| 铁岭市| 花莲县| 荆州市| 离岛区| 舟山市| 大悟县| 台湾省| 哈巴河县| 游戏| 治多县| 冀州市| 许昌市| 成都市| 长顺县| 如皋市| 康平县| 保康县| 嵩明县| 漳浦县| 宁武县| 仲巴县| 永顺县| 安泽县| 白银市| 乌兰察布市| 石屏县|