Or does it behave like a variable for which we have to use %TYPE?

declare
row1 emp%rowtype;
row2 row1%rowtype;
--row3 row1%type;
begin
null;
end;
link|improve this question

1  
What are you trying to achieve? – René Nyffenegger Feb 7 at 8:36
When you run your test PL/SQL block from your example there, do you get an error? – Ollie Feb 7 at 8:36
feedback

1 Answer

up vote 1 down vote accepted

Yes, you can use both %rowtype and %type, apparently both behave identically.

link|improve this answer
Yes, but why rowtype and then another rowtype based on it works...!? – pop stack Feb 7 at 8:57
I'm just as surprised as you ;-) – ammoQ Feb 7 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.