Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
PL/SQL Block output
For i in 1..5 loop
insert into A values(i);
savepoint 1;
end loop;
rollback to savepoint 1;
commit
end;
--initially there are no data in table A. So my question is after execution of this block what should be the data present in table A?
Profile Answers by Kanhucharan Questions by Kanhucharan
Questions by Kanhucharan answers by Kanhucharan
Related Answered Questions
Related Open Questions