Explain the types of composite data type.Following are the types of composite data types:
RECORD - PL/SQL records are similar to C structures. A record provides with a way to deal with separate but related variables as a unit.
TABLE - They are similar to arrays in C. However, they are implemented differently.
In order to declare a PL/SQL table, you need to first define a table type, then you declare a variable of this type
|