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. |
|