InterviewSolution
Saved Bookmarks
| 1. |
What Is A Cursor ? Why Cursor Is Required? |
|
Answer» Cursor is a NAMED private SQL area from where information can be ACCESSED. Cursors are REQUIRED to process rows INDIVIDUALLY for queries returning multiple rows. Cursor is a named private SQL area from where information can be accessed. Cursors are required to process rows individually for queries returning multiple rows. |
|