oracle循环插入

更新时间:01-24 教程 由 曼雁 分享

oracle循环插入?

declare j number := 4; k number := 0; cursor cur_get_data is select a1 from TableA;begin for i in cur_get_data loop update TableB set TableB.b2 = i.a1 where TableB.b1 <= j and TableB.b1 >= k; k := j; j := j+ 5; end loop;end ;

声明:关于《oracle循环插入》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2180664.html