Is there a way, in Oracle 11gR2 that I could create a single column with two names?
Reason I need this is back compatibility, on situations in which this would work:
create table test1 (col1 varchar2(10), col2 [some ref to col1]);
insert into test1 values ('test_value');
and then
SQL> select col1 from test1;
test_value
SQL> select col2 from test1;
test_value
There seem to be a way of thing so on SQL Server, I am looking for the Oracle equivalent to it.
ideas?