Re: Help with foreign key creation problem

Поиск
Список
Период
Сортировка
От Sam Barnett-Cormack
Тема Re: Help with foreign key creation problem
Дата
Msg-id Pine.LNX.4.58.0405131551230.2878@localhost.localdomain
обсуждение исходный текст
Ответ на Help with foreign key creation problem  ("CHRIS HOOVER" <CHRIS.HOOVER@companiongroup.com>)
Список pgsql-admin
On Thu, 13 May 2004, CHRIS HOOVER wrote:

> I need some help understanding and creating foreign keys in postgresql.
>
> Here is an example of what I am trying to do:
>
> I have table 1 with:
> table1_id serial unique
> table1_col1 varchar
>
> I have table2 with:
> table2_id serial unique
> table1_id integer
> table2_col1 varchar
>
> When I try to create the foreign key with
> alter table "schema_name"."table1"
>   add foreign key ("table1_id")
>     references "schema_name"."table2"("table1_id")
>     on delete cascade
>     on update cascade
>     not deferrable;
>
> Postgres complains with:
> ERROR: UNIQUE constraint matching given keys for referenced table "table2" not
> found.
>
> Why is postgresql demanding a unique key on table2.table1_id?  It is a foreign
> key in a parent/child 1 to many relationship.
>
> Please help me understand what is going on, and what I am missunderstanding
> about foreign keys.

Only slightly, you're creating the wrong way around. You want to be
adding the foreign keep to table2.

--

Sam Barnett-Cormack
Software Developer                           |  Student of Physics & Maths
UK Mirror Service (http://www.mirror.ac.uk)  |  Lancaster University

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: GNUmakefile size 0
Следующее
От: "CHRIS HOOVER"
Дата:
Сообщение: Re: Help with foreign key creation problem