%ROWTYPE datatype advantages - PL/SQL Datatypes
Q. What is the advantage of using the %ROWTYPE datatype?- Published on 09 Jul 15a. It is useful to retrieve an entire row from a table. If you do not use the %ROWTYPE datatype, then you have to declare variables for each column separately.
b. It can be used even if data type of the table columns is not known.
c. It ensures that data type of the variable changes dynamically if the underlying table is altered.
d. All mentioned above
e. Both A & B
ANSWER: All mentioned above