Mybatis 条件查询 批量增删改查功能
模糊查询:
@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 条件查询 批量增删改查功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
相关文章
PipedWriter和PipedReader源码分析_动力节点Java学院整理
这篇文章主要介绍了PipedWriter和PipedReader源码分析_动力节点Java学院整理,需要的朋友可以参考下2017-05-05spring @value无法取值多个properties文件的解决
这篇文章主要介绍了spring @value无法取值多个properties文件的解决,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-03-03一篇文章了解Jackson注解@JsonFormat及失效解决办法
这篇文章主要给大家介绍了关于如何通过一篇文章了解Jackson注解@JsonFormat及失效解决办法的相关资料,@JsonFormat注解是一个时间格式化注解,用于格式化时间,文中通过代码介绍的非常详细,需要的朋友可以参考下2023-11-11spring-boot通过@Scheduled配置定时任务及定时任务@Scheduled注解的方法
这篇文章主要介绍了spring-boot通过@Scheduled配置定时任务,文中还给大家介绍了springboot 定时任务@Scheduled注解的方法,需要的朋友可以参考下2017-11-11Spring Scheduling本地任务调度设计与实现方式
这篇文章主要介绍了Spring Scheduling本地任务调度设计与实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-04-04解读动态数据源dynamic-datasource-spring-boot-starter使用问题
这篇文章主要介绍了解读动态数据源dynamic-datasource-spring-boot-starter使用问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-03-03Spring Boot 使用 Disruptor 做内部高性能消息队列
这篇文章主要介绍了Spring Boot 使用 Disruptor 做内部高性能消息队列,工作中遇到项目使用Disruptor做消息队列,对你没看错,不是Kafka,也不是rabbitmq。Disruptor有个最大的优点就是快,还有一点它是开源的哦,下面做个简单的记录2022-06-06关于在IDEA中SpringBoot项目中activiti工作流的使用详解
这篇文章主要介绍了关于在IDEA中SpringBoot项目中activiti工作流的使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-08-08
最新评论