Re: REFERENCE problem with parent_table

Поиск
Список
Период
Сортировка
От Richard Broersma Jr
Тема Re: REFERENCE problem with parent_table
Дата
Msg-id 20060815175247.26184.qmail@web31802.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на REFERENCE problem with parent_table  (gustavo halperin <ggh.develop@gmail.com>)
Ответы Re: REFERENCE problem with parent_table  (gustavo halperin <ggh.develop@gmail.com>)
Список pgsql-general
> I need many tables of type "id" and "name", see below:
> /      CREATE TABLE id_names (
>       id            smallint        CONSTRAINT the_id PRIMARY KEY NOT NULL,
>       name        text            CONSTRAINT the_name UNIQUE
>     ) WITH OIDS;/
> therefore I created these tables with the "LIKE" operator, see below:
> /    CREATE TABLE like_id_1( LIKE id_names INCLUDING DEFAULTS ) WITH OIDS;
>     CREATE TABLE like_id_2 ( LIKE id_names INCLUDING DEFAULTS ) WITH OIDS;

it looks like the syntax here is a little off from what is defined by:
http://www.postgresql.org/docs/8.1/interactive/sql-createtable.html

CREATE TABLE like_id_1 ( id    smallint like id_names,
                         name  text     like id_name ) with oids ;

Regards,

Richard Broersma jr.

В списке pgsql-general по дате отправления:

Предыдущее
От: gustavo halperin
Дата:
Сообщение: REFERENCE problem with parent_table
Следующее
От: gustavo halperin
Дата:
Сообщение: Re: REFERENCE problem with parent_table