首页 > 代码库 > Mybatis -- 批量添加 -- insertBatch
Mybatis -- 批量添加 -- insertBatch
啦啦啦
---------------InsertBatch
Class : Dao
/** * 批量插入perfEnvirons * * @author Liang * * 2017年4月25日 */ void insertBatch(List<PerfEnviron> perfEnvirons);
XML :
<insert id="insertBatch"> INSERT INTO perf_environ(node_id,`type`,perf_time,pm25_h,pm10_h,temp_h,humi_h,co2_h,tvoc_h) VALUES <foreach collection="list" close="" index="index" item="item" open="" separator=","> (#{item.nodeId},#{item.type},#{item.perfTime},#{item.pm25H},#{item.pm10H},#{item.tempH},#{item.humiH},#{item.co2H},#{item.tvocH}) </foreach> </insert>
啦啦啦
---------------
Mybatis -- 批量添加 -- insertBatch
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。