create table mytable(oop
uuid varchar2(64) primary key,ui
nameserial varchar2(128),it
idserial numbertable
);gui
insert into mytable values(sys_guid(), '名字1', 55.5);select
select * from mytable;im
declaretab
i number;loop
len number;while
begin
i := 0;
len := 100;
while i < len loop
insert into mytable values (sys_guid(), CONCAT('名字', i), i);
i := i + 1;
end loop;
commit; -- 提交一下
end;