InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between implicit and explicit cursors? |
|
Answer» Oracle implicitly declares a cursor to all the DDL and DML commands that return only one row. For queries returning multiple rows, an explicit cursor is created. |
|