码迷,mamicode.com
首页 > 数据库 > 详细

SQL批量插入、修改

时间:2019-06-05 17:58:32      阅读:1188      评论:0      收藏:0      [点我收藏+]

标签:end   values   tor   reac   user   dex   any   批量更新   where   

1. 批量插入

insert into table_A  ( ORDER_CODE, PAYMENT_CODE) values
<foreach item="item" index="index" collection="list" separator=",">
(#{item.ORDER_CODE},if(#{item.PAYMENT_CODE}=‘‘,NULL,#{item.PAYMENT_CODE}))

 

2.批量更新

update table_A set
PDH_CNT=
<foreach collection="list" item="item" index="index" separator=" " open="case EFH_SN" close="end">
when #{item.efhSn,jdbcType=VARCHAR} then #{item.pdhCnt,jdbcType=INTEGER}
</foreach>
,DUE_DT=
<foreach collection="list" item="item" index="index" separator=" " open="case EFH_SN" close="end">
when #{item.efhSn,jdbcType=VARCHAR} then #{item.dueDt,jdbcType=TIMESTAMP}
</foreach>
where del_flg=0 and EFH_SN in
<foreach collection="list" index="index" item="item" separator="," open="(" close=")">
#{item.efhSn,jdbcType=VARCHAR}
</foreach>

 

3. table_A 数据导入table_B

INSERT INTO table_B (COMPANY_CODE,ORDER_CODE,PAYMENT_CODE,USER_CODE)

   SELECT COMPANY_CODE,ORDER_CODE,PAYMENT_CODE,USER_CODE FROM table_A 

4.清空表table_A 

truncate table table_A 

SQL批量插入、修改

标签:end   values   tor   reac   user   dex   any   批量更新   where   

原文地址:https://www.cnblogs.com/panyw/p/10980935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!