create table temp (col1 varchar2(30))
Table created.
insert into temp values ('now there is data')
1 row(s) inserted.
select * from temp
COL1 | now there is data |
---|
rollback
Statement processed.
This is the point where the first 5 statements were all run at once
select * from temp
no data found
insert into temp values ('standalone insert')
1 row(s) inserted.
select * from temp
COL1 | standalone insert |
---|
rollback
Statement processed.
select * from temp
COL1 | standalone insert |
---|