The document explains the two types of cursors in PL/SQL: Implicit Cursors, which are automatically managed by Oracle for single-row queries and DML operations, and Explicit Cursors, which are user-defined for handling multiple-row queries requiring manual management. Key differences include the need for declaration and control over operations, with Implicit Cursors being faster for single-row operations. It advises using Implicit Cursors for single-row queries and Explicit Cursors for multi-row queries requiring iterative processing.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
3 views
PLSQL-Cursor1
The document explains the two types of cursors in PL/SQL: Implicit Cursors, which are automatically managed by Oracle for single-row queries and DML operations, and Explicit Cursors, which are user-defined for handling multiple-row queries requiring manual management. Key differences include the need for declaration and control over operations, with Implicit Cursors being faster for single-row operations. It advises using Implicit Cursors for single-row queries and Explicit Cursors for multi-row queries requiring iterative processing.