1.

What Is The Advantage Of Using The %rowtype Datatype?

Answer»

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.

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



Discussion

No Comment Found