create table tbl(str varchar(20)); insert into tbl values('Hello world!'); select * from tbl; begin for i in 1 .. 2 loop insert into tbl values('1 world'); print 2 commit; end; select * from tbl;