Re: Table Copy. - Mailing list pgsql-sql

From Dmitry Tkach
Subject Re: Table Copy.
Date
Msg-id 3D8A5430.9060503@openratings.com
Whole thread Raw
In response to Table Copy.  (PostgreSQL Server <postgres@rsd.it>)
List pgsql-sql
what about CREATE TABLE one (         fileda INTEGER,         filedb INTEGER,         filedc INTEGER );  CREATE VIEW
twoAS SELECT * FROM one;
 
?

Dima

PostgreSQL Server wrote:
> HI!
> 
> I'm new to postgres. I need to have a table as a copy of another one.
> 
> Example:
> 
> CREATE TABLE one (
>         fileda INTEGER,
>         filedb INTEGER,
>         filedc INTEGER );
> 
> CREATE TABLE two (
>         fileda INTEGER,
>         filedb INTEGER,
>         filedc INTEGER );
> 
> As on insert to table one I should get the same insert on table two.
> As on delete to table one I should get the same delete on table two.
> As on update to table one I should get the same update on table two.
> 
> Can someone provide the examples i can study ?
> 
> Thanks in advance.
> 
> Alex
> 
> 
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
> 




pgsql-sql by date:

Previous
From: "Damonte Natalia"
Date:
Subject: using rownum as index-counter of nested table or varray
Next
From: Josh Berkus
Date:
Subject: Re: help w/ constructing a SELECT