Re: Table Copy.

Поиск
Список
Период
Сортировка
От Dmitry Tkach
Тема Re: Table Copy.
Дата
Msg-id 3D8A5430.9060503@openratings.com
обсуждение исходный текст
Ответ на Table Copy.  (PostgreSQL Server <postgres@rsd.it>)
Список 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 по дате отправления:

Предыдущее
От: "Damonte Natalia"
Дата:
Сообщение: using rownum as index-counter of nested table or varray
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: help w/ constructing a SELECT