首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

oralce plsql 游标双循环实现 一个表中id的安插

2013-10-28 
oralce plsql 游标双循环实现 一个表中id的插入declaretempId1department.id%typetempId2department.id%t

oralce plsql 游标双循环实现 一个表中id的插入

declare  tempId1   department.id%type;  tempId2   department.id%type;  cursor c1  is select id from department where rownum between 100 and 200;  cursor c2  is select id from department;  sharedataId     share_data.id%type;  i  long :=0;begin    for c_temp1 in c1  loop              for c_temp2 in c2  loop                      select hibernate_sequence.nextval into sharedataId from dual;                      insert into share_data values(sharedataId,0,c_temp2.id,c_temp1.id);                      dbms_output.put_line('ccc');                      commit;              end loop;    end loop;end;

热点排行