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

Home -> Community -> Usenet -> c.d.o.tools -> Re: Append two tables into one

Re: Append two tables into one

From: Michael Dodd <doddme_at_mindspring.com>
Date: Wed, 14 Mar 2001 22:10:10 -0600
Message-ID: <t1f0btc4qih729esnucd4bsbc9ir6gmq19@4ax.com>

On Wed, 14 Mar 2001 19:55:08 GMT, "Doug" <dmccurdy_at_gwrmail.com> wrote:

>What is the best way to append two tables into one table? There are about
>140000 rows to import.
>
>Thank you
>

insert into table1 as select * from table2;

or

create table new_table nologging as (select * from table1, table2 where ...) Received on Wed Mar 14 2001 - 22:10:10 CST

Original text of this message

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