2020年11月8日
摘要: 当某个字段中字符串是"1,2,3,4,5,6"或者"123456"查询数据表中某个字段是否包含某个值1:模糊查询 使用like select * from 表 where 字段 like '%1%';2:函数查找 find_in_set(str,数组)select * from 表 where fi 阅读全文
posted @ 2020-11-08 14:18 腾逸 阅读(29226) 评论(0) 推荐(0) 编辑
摘要: Pageable+Page实现分页无需配置,也不需要加入jar包(maven依赖) 1 package com.gxuwz.late.controller; 2 3 import com.gxuwz.late.bean.Record; 4 import com.gxuwz.late.reposito 阅读全文
posted @ 2020-11-08 13:26 腾逸 阅读(1427) 评论(0) 推荐(0) 编辑