Re: Multi-Column Constraints and Null Values

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Jeff Frost <jeff(at)frostconsultingllc(dot)com>
Cc: Phillip Tornroth <ptornroth(at)intellidot(dot)net>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Multi-Column Constraints and Null Values
Date: 2006-04-29 20:27:37
Message-ID: 20060429202737.GB14915@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Sat, Apr 29, 2006 at 13:14:36 -0700,
Jeff Frost <jeff(at)frostconsultingllc(dot)com> wrote:
> On Thu, 27 Apr 2006, Phillip Tornroth wrote:
>
> >I have a problem in a number of my tables. I'd like to add uniqueness
> >constraints across multiple columns, but some of the columns are nullable.
> >This gives me trouble since when I create a constraint on columns A and
> >B.. I'd like the constraint to be enforced such that you couldn't insert
> >values ("value for A", null) twice. I understand why the constraints work
> >this way, but I'm wondering if anyone knows of a workaround.
> >
>
> Phill,
>
> You likely want a multicolumn unique index created like so:
>
> CREATE UNIQUE INDEX foo_A_B_unique_idx ON foo (A,B);
>
> See the docs here:
> http://www.postgresql.org/docs/current/interactive/indexes-unique.html

Creating a multicolumn key is a simpler way of doing the same thing.
However, either way of doing the above doesn't completely solve his problem.
To block multiple entries where one of the columns is null he needs to
add extra checks. One way to do this is to add a partial index for each column
with the condition that the other column IS NULL. This will cover everything
but the case where both columns are null. If this case isn't allowed, then
a row constraint can be used to block it. If it is allowed, the only thing that
comes to mind is making an SQL function that counts the number of rows where
both columns are null and calling that function in a row constraint and
checking that the result is <= 1.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2006-04-29 22:02:41 Re: Multi-Column Constraints and Null Values
Previous Message Jeff Frost 2006-04-29 20:14:36 Re: Multi-Column Constraints and Null Values