Google News
logo
PL/SQL - Interview Questions
What is a PL/SQL cursor?
* A PL/SQL cursor is nothing but a pointer to an area of memory having SQL statements and the information of statement processing. This memory area is called a context area. This special area makes use of a special feature called cursor for the purpose of retrieving and processing more than one row.
 
* In short, the cursor selects multiple rows from the database and these selected rows are individually processed within a program.

View More : PL/SQL cursors
 
Advertisement