系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 数据库 > Mysql > 详细页面

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

时间:2020-05-24来源:电脑系统城作者:电脑系统城

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 用法

分享到:

相关信息

  • MySQL的核心查询语句详解

    一、单表查询 1、排序 2、聚合函数 3、分组 4、limit 二、SQL约束 1、主键约束 2、非空约束 3、唯一约束 4、外键约束 5、默认值 三、多表查询 1、内连接 1)隐式内连接: 2)显式内连接: 2、外连接 1)左外连接 2)右外连接 四...

    2023-10-30

  • Mysql中如何删除表重复数据

    Mysql删除表重复数据 表里存在唯一主键 没有主键时删除重复数据 Mysql删除表中重复数据并保留一条 准备一张表 用的是mysql8 大家自行更改 创建表并添加四条相同的数据...

    2023-10-30

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载