Oracle批量更新数据,使用begin end
发布时间:2020-12-12 13:22:12 所属栏目:百科 来源:网络整理
导读:/* 使用begin end批量更新 注意end后面必须使用;结束 并且每条update语句都要用;来结束 所以close为;END; 是为了补全语法 */ foreach collection ="list" item ="item" index = "index" open ="BEGIN" close =";END;" separator =";" update xxxx set xxxx =
/* 使用begin end批量更新 注意end后面必须使用;结束 并且每条update语句都要用;来结束 所以close为;END; 是为了补全语法 */ <foreach collection="list" item="item" index= "index" open="BEGIN" close=";END;" separator =";"> update xxxx <set> xxxx = 100 </set> <where> ID = ‘xxxx‘ </where> </foreach> 注意的点: 1.begin end 必须成对出现 2.end后面必须跟;结束 3.每一条语句都要以;结束 所以close是 ;END; 是为了补全语法 参考[1]:https://blog.csdn.net/aaronmer/article/details/80576191 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |