Re: Foreign key to 2 tables problem

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: Foreign key to 2 tables problem
Дата
Msg-id 1132673996.970.223.camel@home
обсуждение исходный текст
Ответ на Foreign key to 2 tables problem  (Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl>)
Список pgsql-sql
On Tue, 2005-11-22 at 16:24 +0100, Joost Kraaijeveld wrote:
> Hi,
> 
> Is there a way to create a foreign key to 2 tables: e.g. a bankaccount
> table that has a column "owner", that must point to a record in either
> the customer or the supplier table?

No. What you need is an owner table that customers and suppliers are
inherited from. Put your 'entity' data into the owner table. Put
customer and supplier specific information into the customer and
supplier structures.

create table owner (owner_name varchar(120) primary key, ...);
create table customer (customer_name varchar(120) references
owner, ...);
create table supplier (supplier_name varchar(120) references
owner, ...);

create table bankaccount (owner_name varchar(120) references owner);


You can use a periodic check to ensure that all owners are a customer or
supplier just incase your code breaks.

Incidentally, this also allows a single entity with a single bankaccount
to be both a customer and a supplier. They can supply you with product X
and purchase product Y without 2 different accounts.
-- 



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

Предыдущее
От: John McCawley
Дата:
Сообщение: Re: Foreign key to 2 tables problem
Следующее
От: John McCawley
Дата:
Сообщение: Re: Foreign key to 2 tables problem