Re: Restrict FOREIGN KEY to a part of the referenced table

Поиск
Список
Период
Сортировка
Искать
От
Jasen Betts
Тема
Re: Restrict FOREIGN KEY to a part of the referenced table
Дата
Msg-id
kk93kf$d66$1@gonzo.reversiblemaps.ath.cx
Список
Дерево обсуждения
Re: Restrict FOREIGN KEY to a part of the referenced table Jasen Betts <jasen@xnet.co.nz>
On 2013-04-11, Matthias Nagel  wrote:
> Hello,
>
> is there any best practice method how to create a foreign key that only allows values from those rows in the referenced table that fulfill an additional condition?

tes. make the key wide enough to capture this state.
I dom't like it either.

or partition the child table (which may not work for other constraints)

> First I present two pseudo solutions to clarify what I would like to
> do. They are no real solutions, because they are neither SQL standard
> nor postgresql compliant. The third solution actually works, but I do
> not like it for reason I will explain later:     

>   FOREIGN KEY ( parent_id, 42 ) REFERENCES parent ( id, discriminator )

I have wanted this before too.

>   FOREIGN KEY ( parent_id ) REFERENCES ( SELECT * FROM parent WHERE discri

I hadn't thought of expressing it like that. or similarly using a view
instead of a select.

but I think I have tried
  FOREIGN KEY ( parent_id ) REFERENCES parent ( id ) where discriminator = 42

and it didn't work.

-- 
⚂⚃ 100% natural



В списке pgsql-sql по дате отправления
От: Jasen Betts
Дата:
Сообщение: Re: Advice for index design
От: Richard Broersma
Дата:
FAQ