Re: Add Foreign Keys To Table

Поиск
Список
Период
Сортировка
От Alan Hodgson
Тема Re: Add Foreign Keys To Table
Дата
Msg-id 201107071119.56980.ahodgson@simkin.ca
обсуждение исходный текст
Ответ на Add Foreign Keys To Table  (Rich Shepard <rshepard@appl-ecosys.com>)
Ответы Re: Add Foreign Keys To Table  (Rich Shepard <rshepard@appl-ecosys.com>)
Список pgsql-general
On July 7, 2011 10:40:11 AM Rich Shepard wrote:
> alter table station_information add column sta_type varchar(50)
> unique not null references station_type(sta_type);
> NOTICE:  ALTER TABLE / ADD UNIQUE will create implicit index
> "station_information_sta_type_key" for table "station_information"
> ERROR:  there is no unique constraint matching given keys for referenced
> table "station_type"
>    Reading the alter table document page for 9.x does not show me what I'm
> doing incorrectly.

You need a unique index on station_type.sta_type


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

Предыдущее
От: mike beeper
Дата:
Сообщение: Creating temp tables inside read only transactions
Следующее
От: Rich Shepard
Дата:
Сообщение: Re: Add Foreign Keys To Table