中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

鄱阳县| 香河县| 泾阳县| 青神县| 凤翔县| 朝阳区| 常州市| 廉江市| 林州市| 龙岩市| 珲春市| 海晏县| 营山县| 鹤壁市| 平罗县| 如东县| 镇远县| 敦化市| 桂林市| 渝中区| 将乐县| 博罗县| 毕节市| 阿勒泰市| 老河口市| 汶川县| 凤庆县| 东乡族自治县| 新晃| 民勤县| 富源县| 双柏县| 天镇县| 高陵县| 台前县| 五台县| 威信县| 神农架林区| 大庆市| 于田县| 郎溪县|