Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Copying Data

Re: Copying Data

From: andrewst <member14183_at_dbforums.com>
Date: Mon, 03 Nov 2003 07:58:28 -0500
Message-ID: <3552561.1067864308@dbforums.com>

Originally posted by Mumblez

> how can you copy the certain data from one table into another

>

> ie, you create another table but 3 columns used are found in
> others tables,

> how would you populate that table with the contents of the tuples
> from the

> others

> By the way thanks for the help so far

You mean like this?

insert into new_table( a, b )

select t1.a, t2.b

from t1, t2

where t1.c = t2.c;

--
Posted via http://dbforums.com
Received on Mon Nov 03 2003 - 06:58:28 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US