模糊查询:
@Select({ "SELECT * FROM account where account like CONCAT('%',#{query},'%') or email like CONCAT('%',#{query},'%')" }) Account findAccountByAccountOrMail(@Param("query") String query);
批量添加:
@Insert({ "<script>" + "INSERT INTO company_label(company_id,label_id) values " + " <foreach collection=\"item\" item=\"item\" index=\"index\" separator=\",\" > " + " (#{companyId},#{item}) " + " </foreach>" + "</script>" }) void insertLabelForCompany(@Param("companyId") Long companyId,@Param("item") List<Long> item);
批量删除:
@Delete({ "<script>delete from company_label where company_id = #{companyId} and label_id in " + "<foreach collection = \"item\" item = \"item\" open=\"(\" separator=\",\" close=\")\">" + "#{item}" + "</foreach>" + "</script>" }) void removeLabelForCompany(@Param("companyId") Long companyId,@Param("item") List<Long> item);
批量修改:
@Update(value = "<script>" + "update banner b set b.display = #{status} where b.id in "+ "<foreach item = 'item' index = 'index' collection = 'ids' open = '(' separator = ',' close = ')'>#{item}</foreach>" + "" + "</script>") int updateStatus(@Param("status") Long status, @Param("ids") Long[] ids);
批量查询:
@Select({ "<script>" + "select * from product where id in" + "<foreach item = 'item' index = 'index' collection = 'idList' open = '(' separator = ',' close = ')'>#{item}</foreach>" + "</script>" }) List<Product> findByIdList(@Param("idList")List<Long> idList);
条件查询,if里面不仅可以判空,还可以判断是否满足某个条件
@Select({ "<script>SELECT * FROM company where 1=1 and parent_id = #{companyId} " + //平级 "<if test = \"isScanSameLevelValue == 1\">and type = #{type}</if>" + "<if test = \"isScanSameLevelValue == 0\">and type != #{type}</if>" + "</script> " }) List<Company> findCompanyConditional(@Param("isScanSameLevelValue") String isScanSameLevelValue, @Param("isScanParentLevelValue") String isScanParentLevelValue, @Param("companyId") Long companyId, @Param("type") Integer type);
条件查询:
*/ @Lang(XMLLanguageDriver.class) @Select({"<script>select DISTINCT p.* FROM `us_product`.`hot_category_surgery` hcs "+ "LEFT JOIN `us_product`.`product` p ON hcs.`product_id` =p.`id`"+ "LEFT JOIN `us_product`.`category_surgery` cs on cs.`product_id` =p.`id`"+ "LEFT JOIN `us_product`.`merchant_product` mp on mp.`product_id` = p.`id`"+ "LEFT JOIN `us_product`.`org_product` op on op.`product_id` =p.`id`"+ "where p.`type` =1 and p.`is_for_sale` =1 "+ " <if test=\"hId != null\"> and hcs.hot_category_id = #{hId} and p.id = hcs.product_id</if>" + //热门类目id " <if test=\"categoryId != null\"> and cs.category_id = #{categoryId} and p.id = cs.product_id</if>" + //类目id " <if test=\"input != null\"> and (p.name like CONCAT('%',#{input},'%') or p.company like CONCAT('%',#{input},'%')) </if> "+ //用户输入,包括商品名和店铺名,模糊 " <if test = \" location != null\"> and p.location like CONCAT('%',#{location},'%') </if> "+ //位置.. " <if test=\"method != null\"> and mp.filter_id = #{method} and p.id = mp.product_id</if> "+ //筛选条件 手术方式 " <if test=\"org != null\"> and op.filter_id = #{org} and p.id = op.product_id</if> "+ //筛选条件 所属机构 " ORDER BY sale_volume DESC"+ " </script>" }) List<Product> findProductFromLocal(@Param("hId")Long hId,@Param("categoryId")Long categoryId,@Param("input")String input,@Param("method")Long method,@Param("org")Long org,@Param("location")String location);
以上所述是小编给大家介绍的Mybatis 条件查询 批量增删改查功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!
本文向大家介绍Mybatis实现增删改查及分页查询的方法,包括了Mybatis实现增删改查及分页查询的方法的使用技巧和注意事项,需要的朋友参考一下 MyBatis的前身就是iBatis。是一个数据持久层(ORM)框架。 MyBatis是支持普通SQL查询,存储过程和高级映射的优秀持 久层框架。MyBatis消除了几乎所有的JDBC 代码和参数的手工 设置以及结果集的检索。MyBatis使用简单的X
本文向大家介绍MyBatis增删改查快速上手,包括了MyBatis增删改查快速上手的使用技巧和注意事项,需要的朋友参考一下 作为一个快乐的小码农,在每一个阶段往往都在重复写着不同版本的,学生管理,用户管理,注册登录,从 JavaSE 的控制台版,或者 GUI 版,再到 JavaWeb的 JSP版,再到纯粹使用 HTML 作为前端展示的版本,以及使用一个更新的技术,在此其中,我们用过 txt 做数据
/** * 用户控制器 */ public class UserController { /** * 用户列表 * @param request * @param response */ public void users(Request request, Response response){ List<User> u
问题内容: 我的应用程序具有一组固定的SQL查询。这些查询以轮询模式运行,每10秒运行一次。 由于数据库的大小(> 100 GB)和设计(优步进行了标准化),我遇到了性能问题。 每当更改查询结果的数据库上发生CRUD事件时,是否可以对给定查询进行增量更改?例如,如果我查询姓氏为FOO的所有员工,那么我希望每当a)姓氏为FOO的新员工加入b)姓氏为FOO的雇员被解雇等时收到通知。 我正在运行SQL
问题内容: 我想通过添加1个月来更新数据库中的month,但是我不知道如何在以下存储过程查询中添加month我在sql中不好,请检查一下 当执行查询时,我必须写些什么才能增加1个月 问题答案: 若要将类型的现有值增加一个月或一个月,请使用: 就像Oleg正确指出的那样,假设您的两个语句具有相同的条件(),那么您可以一次完成此操作:
本文向大家介绍mybatis一对一查询功能,包括了mybatis一对一查询功能的使用技巧和注意事项,需要的朋友参考一下 所谓的一对一查询,就是说我们在查询一个表的数据的时候,需要关联查询其他表的数据。 需求 首先说一个使用一对一查询的小需求吧:假设我们在查询某一个订单的信息的时候,需要关联查询出创建这个订单对应的用户信息。表模型如下( ResultType sql语句的书写