zoukankan      html  css  js  c++  java
  • 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 用法

  • 相关阅读:
    haproxy常用配置
    分区命令(大于2TB的分区)
    css基础-2 div布局
    css基础-1
    2.HTML5基本标签
    1.HTML基本结构、头部、注释
    AWK数组
    nginx rewrite 基础
    nginx location详解
    Linux命令练习.ziw
  • 原文地址:https://www.cnblogs.com/jwm1999/p/12951394.html
Copyright © 2011-2022 走看看