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

oracle 循环安插数据

2012-07-30 
oracle循环插入数据declarev_LoopCounter Binary_Integer:1beginloopinsert into r_examquestion(questi

oracle 循环插入数据

declare
v_LoopCounter Binary_Integer:=1;
begin
loop
insert into r_examquestion(questioncontent, questiontypecode, sectionid, catalogid, stagecode,
?subjectcode, versioncode, gradecode, depid, title,Operno,Ispersondelete
?) values
?('aaa', '004', '0000000433', '0000000201', '03',
?'001', '0101', '001', '0003230', '000000001','000000001','0'
?);
v_LoopCounter:= v_LoopCounter+1;
exit when v_LoopCounter=1000000;
end loop;
end;

热点排行