what are %TYPE and %ROWTYPE? what is the difference?
Answer Posted / debasis dutta
%type is associates a variable with column data of a table..
ex..
empno emp_mast.eno%type;
%rowtype is associates a variable with whole table data of
a database..
ex
tot emp_mast%rowtype;
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What are the different type of joins in sql?
What are all different types of collation sensitivity?
How does rowid help in running a query faster?
Which constraints we can use while creating database in sql?
How do I turn a list into a table?
What are different methods to trace the pl/sql code?
Why use subqueries instead of joins?
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba
what is datawarehouse? : Sql dba
how to escape special characters in sql statements? : Sql dba
Explain what is an index?
What is the difference between function, procedure and package in pl/sql?
How to handle bulk data?
Which data dictionary views have the information on the triggers that are available in the database?
Explain mutating table error.