@Mapper
wo-wo-wo
互联网SaaS平台,995搬砖
展开
-
MyBatis 采用注解方式批量更新数据 @Mapper @Update (包含2种方法)
批量更新数据方法(1)//注释db_filed_name :表示的是的数据库字段名字 entity_name :表示的是你的实体字段 table_name:表示你的表名 @Update("<script><foreach collection = 'obj' item ='item' open='' close='' separator=';'>updat...原创 2019-07-16 13:13:26 · 12588 阅读 · 6 评论 -
select 多字段批量查询 和 update 多字段批量更新
-- 多字段批量更新update table_name set field_name='hello world' where (field_1,field_2)in(('xxxxxxx','xxxxxxx'))--多字段批量查询select * from table_name where (field_1,field_2)in(('xxxxxxx','xxxxxxxx'))...原创 2019-08-01 10:07:36 · 1551 阅读 · 0 评论