循环增添记录(PL/SQL块语法、循环语法)

循环添加记录(PL/SQL块语法、循环语法)declareaa integer :1beginwhile aa10loopinsert into test value

循环添加记录(PL/SQL块语法、循环语法)

declare  aa integer :=1;begin  while aa<10  loop  insert into test values('test',aa);  aa:=aa+1;  end loop;end;