constraints for ensuring relationships - Mailing list pgsql-sql

From Markus Wagner
Subject constraints for ensuring relationships
Date
Msg-id 0205211208080R.01320@magnus
Whole thread Raw
Responses Re: constraints for ensuring relationships  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-sql
Hi,

I wonder if I can use constraints to ensure some special integrity.

Suppose there is a table "Type" of item types:

CREATE TABLE "Type"
("index"    SERIAL PRIMARY KEY,"name"     TEXT,"multiple" BOOL
);

Suppose there is a table "Item" like this:

CREATE TABLE "Item"
("index"    SERIAL PRIMARY KEY,"type"     INT REFERENCES "Type","data"     TEXT
);

Supose there is a table "SubItem" that contains special details about our 
items:

CREATE TABLE "SubItem"
("index" SERIAL PRIMARY KEY,"Item"  INT REFERENCES "Item","Data"  TEXT
);

And now the constraint:

Each Item should be allowed to have more than one subitem, if and only if its 
type allows for multiple instances, i. e. the type the item is linked to must 
have 't' in its field 'multiple'.

Can I attach constraints to some of the tables (e. g. "SubItem") that ensure 
this?

Thanks a lot!

Markus


pgsql-sql by date:

Previous
From: Wolfgang.Fuertbauer@ebewe.com
Date:
Subject: drop constraint problem
Next
From: Bruno Wolff III
Date:
Subject: Re: [NOVICE] Guarantee uniqueness of PGP key