Re: Add Foreign Keys To Table

Поиск
Список
Период
Сортировка
От Alan Hodgson
Тема Re: Add Foreign Keys To Table
Дата
Msg-id 201107071244.48277.ahodgson@simkin.ca
обсуждение исходный текст
Ответ на Re: Add Foreign Keys To Table  (Rich Shepard <rshepard@appl-ecosys.com>)
Ответы Re: Add Foreign Keys To Table
Список pgsql-general
On July 7, 2011 12:30:35 PM Rich Shepard wrote:
> On Thu, 7 Jul 2011, Alan Hodgson wrote:
> > It implies the composite is unique. Not sta_type.
>
>    OK. Now I understand. How, then, do I add a unique constraint to each
> component of the composite key so I can add them as foreign keys to the
> station_information table? Or, is there another way to add those two
> columns to station_information and then add the foreign key constraints?
>
> Thanks for clarifying,
>

create unique index index_name on table (column).

Or I think you can create a foreign key on a composite like "foreign key
(column1,column2) references table (column1,column2)" which probably makes
more sense if that is a natural key.

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

Предыдущее
От: Rich Shepard
Дата:
Сообщение: Re: Add Foreign Keys To Table
Следующее
От: "David Johnston"
Дата:
Сообщение: Re: Add Foreign Keys To Table