Mybatisd对MySQL批量插入语句的方法是什么
本篇内容介绍了“Mybatisd对MySQL批量插入语句的方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
创新互联公司主要从事做网站、网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务富拉尔基,10多年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:13518219792
1、批量插入
id="insertBatch" parameterType="java.util.List"> insert into t_student(name, age, class) values collection="list" item="item" index="index" separator=","> ( #{item.name,jdbcType=VARCHAR}, #{item.age,jdbcType=INTEGER}, #{item.class,jdbcType=LONGVARCHAR} )
2、批量更新
方式一:
collection="list" separator=";" item="stud"> update t_studetn set name = #{stud.name}, age = #{stud.age}, class = #{stud.sex}, where id = #{stud.id}
方式二:
id="updateBatch" parameterType="list"> UPDATE t_student SET name = CASE id collection="list" item="i" index="index"> WHEN #{i.id} THEN #{i.name} END, age = CASE id collection="list" item="i" index="index"> WHEN #{i.id} THEN #{i.age} END WHERE id IN collection="list" separator="or" item="i" index="index" > id=#{i.id}
3、批量删除
delete from
t_student
where
id IN
collection="ids" item="item" index="index" open="(" close=")" separator=","> #{item}
item | 循环体中的具体对象。支持属性的点路径访问,如item.age,item.info.details。 具体说明:在list和数组中是其中的对象,在map中是value。 该参数为必选。 |
collection | 要做foreach的对象,作为入参时,List>对象默认用list代替作为键,数组对象有array代替作为键,Map对象没有默认的键。 |
separator | 元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,如in(1,2,)这样。该参数可选。 |
open | foreach代码的开始符号,一般是(和close=")"合用。常用在in(),values()时。该参数可选。 |
close | foreach代码的关闭符号,一般是)和open="("合用。常用在in(),values()时。该参数可选。 |
index | 在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选。 |
“Mybatisd对MySQL批量插入语句的方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!
当前题目:Mybatisd对MySQL批量插入语句的方法是什么
网页网址:http://scyanting.com/article/pesidg.html