Re: select into equivalent of SQL Server

From: Matt Foster <matt_foster_uk_at_yahoo.co.uk>
Date: Fri, 22 Dec 2000 09:45:51 +0000
Message-ID: <3A4322CF.D7CF2A6B_at_yahoo.co.uk>


krishna wrote:
>
 

>
> "select * into emp_bak from emp "
>
> where the emp is the table with some records and emp_bak is the table
> created by select into command and it also inserts the records from emp
> table.
>

create table emp_bak as
select * from emp;

HTH, MF

-- 
matt_foster_uk_at_yahoo.co.uk
Received on Fri Dec 22 2000 - 10:45:51 CET

Original text of this message