Hello!
many people posted their answer to this simple question. however,
neither
CREATE TABLE AS
nor
SELECT INTO
do not take care about keys and triggers, etc.
The commands above only copy the structure of the table, and the data.
Are there any workarounds fr copying the table as a whole object?
thanks,
Mila
> Hi,
> On 17 Jun 2003, Rado Petrik wrote:
>> How I create table1 from other table2 .
> CREATE TABLE table1 AS SELECT * FROM table2;
> will work.
> Regards,