Re: Foreign key to 2 tables problem - Mailing list pgsql-sql

From Rod Taylor
Subject Re: Foreign key to 2 tables problem
Date
Msg-id 1132673996.970.223.camel@home
Whole thread Raw
In response to Foreign key to 2 tables problem  (Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl>)
List 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 by date:

Previous
From: John McCawley
Date:
Subject: Re: Foreign key to 2 tables problem
Next
From: John McCawley
Date:
Subject: Re: Foreign key to 2 tables problem