Re: CREATE table1 FROM table2 - Mailing list pgsql-sql

From Tomasz Myrta
Subject Re: CREATE table1 FROM table2
Date
Msg-id 3EEF355A.9000503@klaster.net
Whole thread Raw
In response to CREATE table1 FROM table2  (Rado Petrik <r.p@szm.sk>)
List pgsql-sql
Dnia 2003-06-17 17:20, Użytkownik Rado Petrik napisał:
> Hi, 
> 
> How I create table1 from other table2 . 
> 
> "cp table1 table2" 
create table2 as select * from table1;
It is described in Postgresql documentation SQL Commands -> "create table as"

Regards,
Tomasz Myrta



pgsql-sql by date:

Previous
From: "Nicolas JOUANIN"
Date:
Subject: Re: CREATE table1 FROM table2
Next
From: Josh Berkus
Date:
Subject: Re: Catching DML exceptions in PL/pgSQL