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, 1817🔥, 0💬
Popular Posts:
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
How To Calculate DATETIME Value Differences Using the DATEDIFF() Function in SQL Server Transact-SQL...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...