mybatis实现批量修改-xml方式
程序员文章站
2022-03-28 22:33:09
目录mybatis批量修改-xmlmybatis xml批量更新值mybatis批量修改-xmlmybatis批量查询,批量新增就不聊了,今天看看批量修改。直接上代码吧xml文件中代码如下:
mybatis批量修改-xml
mybatis批量查询,批量新增就不聊了,今天看看批量修改。
直接上代码吧
xml文件中代码如下:
<update id="batchupdate" parametertype="java.util.list"> update pat_doc_pat_info set sex= <foreach collection="list" item="item" index="index" separator=" " open="case patient_id" close="end"> when #{item.patientid} then #{item.sex} </foreach> ,address= <foreach collection="list" item="item" index="index" separator=" " open="case patient_id" close="end"> when #{item.patientid} then #{item.address} </foreach> ,birth_time= <foreach collection="list" item="item" index="index" separator=" " open="case patient_id" close="end"> when #{item.patientid} then #{item.birthtime} </foreach> ,remark= <foreach collection="list" item="item" index="index" separator=" " open="case patient_id" close="end"> when #{item.patientid} then #{item.remark} </foreach> ,modified_time = now() ,belong_hospital = 1 where delete_flag = 1 and doctor_id = <foreach collection="list" item="item" index="index" separator=" " open="case patient_id" close="end"> when #{item.patientid} then #{item.doctor_id} </foreach> and patient_id in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.patientid} </foreach> </update>
mapper类中代码如下:
int batchupdate(list<picappatientmodel> list);
测试类方法如下:
@autowired private patdocpatinfomapper patdocpatinfomapper; @test public void testmappermethod () { list<picappatientmodel> updatemappinglist = new arraylist<>(); picappatientmodel model1 = new picappatientmodel(); model1.setpatientid(12334); model1.setdoctor_id(5466927); model1.setsex(2); model1.setaddress("上海市普陀区xxxx"); model1.setbirthtime(new date()); model1.setremark("哈哈哈哈"); picappatientmodel model2 = new picappatientmodel(); model2.setpatientid(5923302); model2.setdoctor_id(5466927); model2.setsex(1); model2.setaddress("上海市普陀区xxxx金沙江路1008号"); model2.setbirthtime(new date()); model2.setremark("哈哈哈哈adsfsa"); updatemappinglist.add(model1); updatemappinglist.add(model2); patdocpatinfomapper.batchupdate(updatemappinglist); }
mybatis xml批量更新值
在表中已经存好了名字,但是想在这些个名字后面再加上想要的内容,例如表中有一个叫钱塘江的,我要改成钱塘江水系,而且都这样改,都要加上水系两个字,这个好办,用java来实现的话就是先查询出所有的内容存入 list 中,然后遍历这个list放入对象中,用set实体类的方式拼接,然后update
public result uuu(){ list<mdwatersystem> list = mdwatersystemservice.findall(); for (mdwatersystem mdwatersystem : list) { mdwatersystem.setwatername(mdwatersystem.getwatername()+"水系"); mdwatersystemservice.updates(mdwatersystem); } return responsemsgutil.success(list); }
虽然这样也能够实现,但是大可不必用代码,直接在sql中写
update md_water_system set water_name = concat(ifnull(water_name,''), ifnull('水系',''));
用concat这个函数将现有的内容中后面加上自己想加入的即可
若又不想要了,可以用sql来替换
update md_water_system set water_name = replace(water_name, '水系', '')
replace这个函数是替换函数,将要替换掉的字段内容写进去即可
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
上一篇: java使用IO流对数组排序实例讲解