Collections:
Define a Specific RECORD Type in Oracle
How To Define a Specific RECORD Type in Oracle?
✍: FYIcenter.com
If you want to define a specific RECORD type, you need to use the TYPE ... IS RECORD statement in the declaration part of any procedure or function. The following example script defines a RECORD type called STUDENT:
CREATE OR REPLACE PROCEDURE HELLO AS TYPE student IS RECORD ( id NUMBER(5), first_name VARCHAR(80), last_name VARCHAR(80) ); BEGIN NULL; END; /
⇒ Define a Variable for a Specific RECORD Type in Oracle
⇐ What Is a RECORD in PL/SQL in Oracle
2018-09-01, 1694🔥, 0💬
Popular Posts:
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...