Re: Mergen two tables ?
Posted by: Bob Field
Date: March 24, 2006 11:53AM

Very simple:

insert into table1 select * from table2;

Or this:

create table3 like table1;
insert into table3 select * from table1;
insert into table3 select * from table2;

Or even:

create table3 select * from table1;
insert into table3 select * from table2;

Options: ReplyQuote


Subject
Written By
Posted
March 24, 2006 10:37AM
Re: Mergen two tables ?
March 24, 2006 11:53AM
March 24, 2006 01:00PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.