mybatis 之批量模糊查询、foreach string[] 的用法

233 篇文章 4 订阅
List<Recipe> randomRecipe(@Param("str")String[] strs,@Param("num")int num);

功能:随机查询num个不含strs[]的的Recipe

注:str:["苹果","甘蓝"]   num:5

<!-java项目www.fhadmin.org-!>
<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 用法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值