Collections:
Retrieve Data from a Cursor to a RECORD in Oracle
How To Retrieve Data from a Cursor to a RECORD in Oracle?
✍: FYIcenter.com
If you have a cursor opened ready to use, you can also use the FETCH statement to retrieve data from the cursor into a RECORD variable as shown in the tutorial exercise below:
CREATE OR REPLACE PROCEDURE FYI_CENTER AS
CURSOR t_list IS SELECT first_name, last_name
FROM employees;
TYPE name_rec IS RECORD (
f_name VARCHAR2(10),
l_name VARCHAR2(10)
);
n name_rec;
BEGIN
OPEN t_list;
FETCH t_list INTO n;
DBMS_OUTPUT.PUT_LINE('Name = ' || n.f_name || ' '
|| n.l_name);
FETCH t_list INTO n;
DBMS_OUTPUT.PUT_LINE('Name = ' || n.f_name || ' '
|| n.l_name);
CLOSE t_list;
END;
/
Name = Ellen Abel
Name = Sundar Ande
⇒ Use FETCH Statement in a Loop in Oracle
⇐ Retrieve Data from an Explicit Cursor in Oracle
2018-07-22, 3194🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...