oracle 匿名存储过程插入大量测试数据

declare i integer;
begin i:=1;
loop  insert into T(ID, dt, VALUE) values(SEQ.nextval, to_date('2005-10-10', 'YYYY-MM-DD'),i);
  i:=i+1;  
  exit when i>10;
  end loop;
  commit;
  end;
  /   --一定记得加哦