Basic Oracle Concepts and Programming Question: Download Oracle Database PDF

How To Open and Close an Explicit Cursor in Oracle?

Tweet Share WhatsApp

Answer:

An existing cursor can be opened or closed by the OPEN or CLOSE statement as shown in the following sample script:

DECLARE
CURSOR c_list IS SELECT * FROM countries;
CURSOR t_list IS SELECT * FROM employees
WHERE employee_id = 100;
BEGIN
OPEN c_list;
OPEN t_list;
CLOSE c_list;
CLOSE t_list;
END;
/


Download Oracle Database PDF Read All 430 Oracle Database Questions
Previous QuestionNext Question
How To Define an Explicit Cursor in Oracle?How To Retrieve Data from an Explicit Cursor?