循环添加记录(PL/SQL块语法、循环语法)
declare aa integer :=1;begin while aa<10 loop insert into test values('test',aa); aa:=aa+1; end loop;end;