Collections:
What Is a RECORD in PL/SQL in Oracle
What Is a RECORD in PL/SQL in Oracle?
✍: FYIcenter.com
RECORD is a composite data type in PL/SQL. It can have many fields representing data elements with different data types. Variables of RECORD type can be designed to hold data from database table rows. To use RECORD data type, you need to define a specific RECORD type with each field defined with a name and a data type. Then you can use your specific RECORD type to define your RECORD type variables.
⇒ Define a Specific RECORD Type in Oracle
⇐ Assign Data from a Deleted Row to Variables in Oracle
2018-09-13, 2985🔥, 0💬
Popular Posts:
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...