InterviewSolution
Saved Bookmarks
| 1. |
Describe The Use Of %rowtype And %type In Pl/sql |
|
Answer» %ROWTYPE allows you to associate a VARIABLE with an entire table ROW. The %TYPE ASSOCIATES a variable with a single column type. %ROWTYPE allows you to associate a variable with an entire table row. The %TYPE associates a variable with a single column type. |
|