Collections:
Loop through a Cursor Variable in Oracle
How To Loop through a Cursor Variable in Oracle?
✍: FYIcenter.com
Once a cursor variable is opened with a query statement, it will have the same attributes as a normal cursor and it can be used in the same way a normal cursor too. The following sample script shows you how to loop through a cursor variable:
CREATE OR REPLACE PROCEDURE FYI_CENTER AS
TYPE emp_ref IS REF CURSOR RETURN employees%ROWTYPE;
emp_cur emp_ref;
emp_rec employees%ROWTYPE;
BEGIN
OPEN emp_cur FOR SELECT * FROM employees
WHERE manager_id = 101;
LOOP
FETCH emp_cur INTO emp_rec;
EXIT WHEN emp_cur%NOTFOUND;
DBMS_OUTPUT.PUT_LINE('Name = ' ||
emp_rec.first_name || ' ' || emp_rec.last_name);
END LOOP;
CLOSE emp_cur;
END;
/
Name = Nancy Greenberg
Name = Jennifer Whalen
Name = Susan Mavris
Name = Hermann Baer
Name = Shelley Higgins
⇒ Pass a Cursor Variable to a Procedure in Oracle
⇐ Open a Cursor Variable in Oracle
2018-07-18, 2569🔥, 0💬
Popular Posts:
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...