Basic Oracle Concepts and Programming Question: Download Oracle Database PDF

What Is a RECORD in PL/SQL?

Tweet Share WhatsApp

Answer:

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.

Download Oracle Database PDF Read All 430 Oracle Database Questions
Previous QuestionNext Question
How To Assign Data of the Deleted Row to Variables?How To Define a Specific RECORD Type?