Re: mutually exclusive subtypes

From: "Daniel T(dot) Staal" <DStaal(at)usa(dot)net>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: mutually exclusive subtypes
Date: 2006-04-13 15:23:28
Message-ID: 59083.63.172.115.138.1144941808.squirrel@MageHandbook.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Thu, April 13, 2006 11:08 am, Olinga K. Abbott said:

> Of course, being an airplane and being an automobile are mutually
> exclusive. How does one program the mutual exclusivity in PostgreSQL?
> I've studied using check contraints, triggers, and rules, but I'm not
> finding any obvious way to program this.

The obvious thing to me would be inheritance. Both 'auto' and 'airplane'
are tables that inheret from the same table. I'm not sure if 'unique'
holds across subtables, (I'm guessing it probably does, if it is in the
main table) but if it doesn't it would be fairly easy to write a procedure
that checks for the relevent entries in the top level table and all it's
children before entering data.

Daniel T. Staal

---------------------------------------------------------------
This email copyright the author. Unless otherwise noted, you
are expressly allowed to retransmit, quote, or otherwise use
the contents for non-commercial purposes. This copyright will
expire 5 years after the author's death, or in 30 years,
whichever is longer, unless such a period is in excess of
local copyright law.
---------------------------------------------------------------

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Richard Broersma Jr 2006-04-13 17:05:55 Re: mutually exclusive subtypes
Previous Message Olinga K. Abbott 2006-04-13 15:08:37 mutually exclusive subtypes