Feature request: column name in RECORD, VARRAY and TYPE

TMoore

Member²
Hi

One of the horrible thing is rewrite column in RECORD, VARRAY, for example:

declare
my_rec emp%ROWTYPE;

begin
select * into my_rec from emp;

dbms_output.put_line( my_rec.
 
Ok, it work in procedure window but not in usual sql window when I write some test and develop custom PL/SQL piece of code.
 
Back
Top