0 votes
in PL/SQL by
Explain what Is The Advantage Of Using The %rowtype Datatype?

1 Answer

0 votes
by

The advantages of using the %ROWTYPE datatype to declare variables are given as follows:

  •  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.
  •  It can be used even if datatype of the table columns is not known
  •  It ensures that datatype of the variable changes dynamically if the underlying table is altered.

Related questions

0 votes
asked Mar 15, 2021 in PL/SQL by Robindeniel
0 votes
asked Mar 15, 2021 in PL/SQL by Robindeniel
...