Hi Guys,
I have two tables with three columns. I am using oracle 11g, version 11.2.0.1
SQL> create table t1 (id number,name varchar2(200),age number);
Table created.
SQL> create table t2 (id number,name varchar2(200),salary number);
Table created.
Table t1 is having some values but Table t2 is empty.
I want to insert values in t2 from matched coulmns from t1 i.e id and name coulumn is common amongst two tables. I want id and name value should insert in t2.
There are lot of coulms in both the tables, here for just example I have taken three coulmsn. I want to write a query where I want to insert columns in T2 which are matched with Table T1.
Please help me..
Regards,
Arijit