Re: Alternative to Select in table check constraint - Mailing list pgsql-sql

From Richard Broersma Jr
Subject Re: Alternative to Select in table check constraint
Date
Msg-id 20060701014108.79890.qmail@web31811.mail.mud.yahoo.com
Whole thread Raw
In response to Re: Alternative to Select in table check constraint  (Michael Glaesemann <grzm@seespotcode.net>)
Responses Re: Alternative to Select in table check constraint  (Erik Jones <erik@myemma.com>)
Re: Alternative to Select in table check constraint  (Rod Taylor <pg@rbt.ca>)
Re: Alternative to Select in table check constraint  ("Aaron Bono" <postgresql@aranya.com>)
Re: Alternative to Select in table check constraint  (Andreas Joseph Krogh <andreak@officenet.no>)
List pgsql-sql
> >         CHECK   ( 1 = ALL (     SELECT COUNT(STATUS)
> >                                 FROM BADGES
> >                                 WHERE STATUS = 'A'
> >                                 GROUP BY EMPNO))
> 
>  From the PostgreSQL docs (http://www.postgresql.org/docs/8.1/ 
> interactive/sql-createtable.html)
> 
> CREATE UNIQUE INDEX one_a_badge_per_employee_idx
> ON badges (empno)
> WHERE status = 'A';
> http://www.postgresql.org/docs/8.1/interactive/sql-createindex.html
> http://www.postgresql.org/docs/8.1/interactive/indexes-partial.html

Michael,

Partial indexs seem to be "what the doctor ordered!"   And your suggest is right on, the idea of
the constraint is to allow only one active badge status at a time.

But now that I think about it, using the authors suggestion (if it actually worked), how would
would it be possible to change the active status from one badge to another?

Oh well, partial index are obvious the superior solution since the entire table doesn't not have
to be scanned to determine if the new badge can be set to active.

Once again thanks for the insight.

Regards,

Richard Broersma Jr.


pgsql-sql by date:

Previous
From: Michael Glaesemann
Date:
Subject: Re: Alternative to Select in table check constraint
Next
From: Tom Lane
Date:
Subject: Re: Alternative to Select in table check constraint