How many types of cursors are available in PL/SQL?
There are two types of cursors in PL/SQL. Implicit cursor, and explicit cursor In PL/SQL, there are two main types of cursors: Implicit Cursors: These cursors are created by default when DML (Data Manipulation Language) statements like SELECT, INSERT, UPDATE, or DELETE are executed. They are automatically created and managed by the Oracle database engine. … Read more