Re: UNIQUE boolean: only one row may be "true"

Поиск
Список
Период
Сортировка
От Michael Teter
Тема Re: UNIQUE boolean: only one row may be "true"
Дата
Msg-id 20030506171349.3277.qmail@web10001.mail.yahoo.com
обсуждение исходный текст
Ответ на UNIQUE boolean: only one row may be "true"  (Randall Lucas <rlucas@tercent.net>)
Ответы Re: UNIQUE boolean: only one row may be "true"
Список pgsql-sql
Can you elaborate a little on what you want to do with this (as in, example
data, problem domain, etc.)?

This is probably not the answer you're looking for, but without knowing more,
I would guess that you need a different design, not a 1-true,many false field
constraint.

Perhaps you want something like this?

Table A:
thing_groupid (primary key)
...other group info...

Table B:
thing_groupid (reference to A.thing_groupid, many to 1)
thing_id
...details about thing...

?

MT

--- Randall Lucas <rlucas@tercent.net> wrote:
> 
> Hi folks,
> 
> After a late night of SQL hacking, my brain fizzed out:
> 
> How shall I create a constraint such that only one row may be 'true'?  
> Rephrased, may I place a WHERE clause in a UNIQUE constraint, or 
> alternatively, may I use a CHECK constraint with an aggregate?
> 
> Example:
> 
> CREATE TABLE thing (
>   thing_id             serial primary key,
>   thing_group_id     int not null references thing_group(thing_group_id),
>   is_main_thing_p     boolean not null default 'f',
> -- there may be only one main thing per group:
>   unique (thing_group_id, is_main_thing_p='t')
> -- or else something like:
> -- check (count (*) from thing where thing_group_id=NEW.thing_group_id 
> and is_main_thing_p = 't' <2)
> );
> 
> Best,
> 
> Randall
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly


__________________________________
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.
http://search.yahoo.com



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

Предыдущее
От: "Diehl, Jeffrey"
Дата:
Сообщение: Re: pgsql Replication Proxy (was Re: Replication for a
Следующее
От: Bruno Wolff III
Дата:
Сообщение: Re: UNIQUE boolean: only one row may be "true"