#10000条

SQL 循环插入10000条

SQL>createtablett_test(xint,ychar(50));Tablecreated.SQL>SQL>begin2foriin1..1000003loop4insertintotvalues(i,'x');5endloop;6commit;7end;8/PL/SQLprocedure...