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