InterviewSolution
Saved Bookmarks
| 1. |
What do you understand by explicit cursors? |
|
Answer» Explicit cursors are defined explicitly using the CURSOR statement, with a general syntax − CURSOR cursor_name [(parameters)] IS query_expression; It allows processing queries that return multiple rows. |
|