How do you declare a PL/SQL record? Explain with an example.
What will be an ideal response?
You create a RECORD type first and then declare a record with that RECORD type.
For example,
TYPE peson_rectype IS RECORD
(p_lastname VARCHAR2 (15),
p_firstname VARCHAR2 (15),
p_gender VARCHAR2;
person_rec person_rectype;
Computer Science & Information Technology
You might also like to view...
Changing the theme will not only change the colors of the form but also the font type and size and any border colors or object colors added to the form
Indicate whether the statement is true or false
Computer Science & Information Technology
Loop initialization must be completed before the execution of the loop body.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology