//--------------- 建表 ---------------
create table Student_info
(
student_id VARCHAR2(12)
)
//--------------- 插入数据 ---------------
declare
i integer; --定义变量
begin
i := 1;
loop
/* 插入数据 */
insert into student_info (student_id)
values
(TO_CHAR('99999999' + i));
/* 参数递增 */
i := i + 1;
/* 停止条件 */
exit when i > 2000;
end loop;
commit;
end;