What is a cursor for loop?

Submitted by: Administrator
Cursor for loop implicitly declares %ROWTYPE as loop index,opens a cursor, fetches rows of values from active set into fields in the record and closes when all the records have been processed.
eg. FOR emp_rec IN C1 LOOP
salary_total := salary_total +emp_rec sal;
END LOOP;
Submitted by: Administrator

Read Online Oracle PL-SQL Job Interview Questions And Answers