top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the use of %ROWTYPE and %TYPE in PL/SQL?

+3 votes
347 views
What is the use of %ROWTYPE and %TYPE in PL/SQL?
posted Oct 22, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

% TYPE provides the data type of a variable or a database column to that variable. % ROWTYPE provides the record type that represents a entire row of a table or view or columns selected in the cursor. The advantages are : I. Need not know about variable's data typeii. If the database definition of a column in a table changes, the data type of a variable changes accordingly.

answer Oct 26, 2015 by Manikandan J
...