mybaties 批量模糊查詢、foreach string[]用法


List<Recipe> randomRecipe(@Param("str")String[] strs,@Param("num")int num);

功能:隨機查詢num個不含strs[]的的Recipe

注:str:["蘋果","甘藍"]   num:5

<select id="randomRecipe" resultType="cn.jwm.onMK.po.Recipe">
         select* from recipestable 
         <where>
                 mainmaterialname not like 
                 <foreach item="str" index="index" collection="str" open="(" separator="AND" close=")">
                 CONCAT('%',#{str},'%')
                 </foreach>
         </where>
         order by rand() 
         limit #{num}
      </select>

 

DEBUG [http-nio-8080-exec-3] - ==>  Preparing: select* from recipestable WHERE mainmaterialname not like ( CONCAT('%',?,'%') AND CONCAT('%',?,'%') ) order by rand() limit ?
DEBUG [http-nio-8080-exec-3] - ==> Parameters: 甘藍(String), 蘋果(String), 5(Integer)

結合log輸出    注意(   )的含義 和 and 用法

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM