时间: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 用法
2023-10-30
windows上的mysql服务突然消失提示10061 Unkonwn error问题及解决方案2023-10-30
MySQL非常重要的日志bin log详解2023-10-30
详解MySQL事务日志redo log一、单表查询 1、排序 2、聚合函数 3、分组 4、limit 二、SQL约束 1、主键约束 2、非空约束 3、唯一约束 4、外键约束 5、默认值 三、多表查询 1、内连接 1)隐式内连接: 2)显式内连接: 2、外连接 1)左外连接 2)右外连接 四...
2023-10-30
Mysql删除表重复数据 表里存在唯一主键 没有主键时删除重复数据 Mysql删除表中重复数据并保留一条 准备一张表 用的是mysql8 大家自行更改 创建表并添加四条相同的数据...
2023-10-30