您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Mybatis在注解上怎么實現動態SQL”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Mybatis在注解上怎么實現動態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>"})
要加上標簽就可以實現條件判斷
但是在無法使用大于號 、小于號,那如何解決這問題呢,其實只要把大于號、小于號轉義即可
@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 >= #{statrMonth} </if>" + "<if test = \" (statrMonth == null or statrMonth == '') and (endMonth != null and endMonth != '') \"> AND month <= #{endMonth} </if>" + "<if test = \" (statrMonth != null and statrMonth != '') and (endMonth != null and endMonth != '') \">AND month >= #{statrMonth} AND month <= #{endMonth} </if>" + "</where>" + "</script>"}) public List<Examine> getName(Examine examine);
讀到這里,這篇“Mybatis在注解上怎么實現動態SQL”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。