Re: Composite Unique Key - Doubt

From: Basil Bourque <basil(dot)bourque(dot)lists(at)pobox(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Composite Unique Key - Doubt
Date: 2013-06-21 06:44:47
Message-ID: 16948D2B-2EE6-4690-A49B-BB3A0120D00E@pobox.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


On Jun 20, 2013, at 12:08, Vibhor Kumar <vibhor(dot)kumar(at)enterprisedb(dot)com> wrote:

>
> On Jun 20, 2013, at 1:56 AM, Technical Doubts <online(dot)technicaldoubts(at)gmail(dot)com> wrote:
>
>> …
>> technologies
>> (
>> technologyid bigint,
>> status character(1),
>> implementeddate date
>> *CONSTRAINT technologies_uq UNIQUE (technologyid, status, implementeddate)*
>> )
>> …
>> insert into technologies (technologyid,status,implementeddate)
>> values
>> (123,'P',null),
>> (123,'P',null);
>> …
>> table accepting duplicate values in spite of composite unique constraint..
>> where I am doing wrong?
>
> Reason is null is not equal to null.
>
> So, 123,'P',null and 124,'P',null is actually unique composite key.

This is one example of why many folks including Dr. Chris Date recommend against using NULL in SQL.

As a workaround, you could add two more constraints:
• Make 'implementeddate' NOT NULL
• Assign to 'implementeddate' an arbitrary date as a DEFAULT value for new records.

With those two additional constraints in place, your composite unique constraint would then work if your intention is that at most only one combination of 'technologyid' + 'status' should ever exist without an actual date assigned.

Personally, I would choose '1970-01-01' (Unix Epoch) as the arbitrary value with the implicit meaning of 'no date yet assigned'. But you could choose any date that would never be otherwise assigned as an actual date.

https://en.wikipedia.org/wiki/Null_(SQL)#Criticisms
http://www.w3schools.com/sql/sql_notnull.asp
http://www.w3schools.com/sql/sql_default.asp
http://en.wikipedia.org/wiki/Unix_time

--Basil Bourque

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message pmu 2013-06-23 08:17:19 ubuntu 12.04 - Postgresql Erro - psql: could not connect to server
Previous Message michael mccafferty 2013-06-20 23:18:34 Re: Postgres User Home ENV Help