Re: Is a primary key made of a couple columns so much better than a unique() constraint ? - Mailing list pgsql-general

From Tom Lane
Subject Re: Is a primary key made of a couple columns so much better than a unique() constraint ?
Date
Msg-id 21047.1128957731@sss.pgh.pa.us
Whole thread Raw
In response to Re: Is a primary key made of a couple columns so much better than a unique() constraint ?  (Martijn van Oosterhout <kleptog@svana.org>)
Responses Re: Is a primary key made of a couple columns so much better than a unique() constraint ?  (David Pradier <david.pradier@clarisys.fr>)
List pgsql-general
Martijn van Oosterhout <kleptog@svana.org> writes:
> On Mon, Oct 10, 2005 at 04:44:54PM +0200, David Pradier wrote:
>> i'd like to know if it is better to use a primary key made of a couple
>> columns, than to use a constraint UNIQUE() on this couple columns,
>> regarding the sake of postgresql.

> In PostgreSQL, both primary keys and UNIQUE constraints are implemented
> via UNIQUE indexes, ergo there is no difference...

Just for the sake of completeness, there are exactly two differences:

* PRIMARY KEY implies NOT NULL on the key columns; UNIQUE doesn't.

* PRIMARY KEY creates a default target for foreign key references,
  ie, if you've declared a primary key then you can later just say
  "REFERENCES mytab" instead of spelling out "REFERENCES mytab(keycol)".

So "UNIQUE + NOT NULL" is pretty dang close to the same as "PRIMARY
KEY", but not quite.

            regards, tom lane

pgsql-general by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: PostgreSQL 8.1 vs. MySQL 5.0?
Next
From: David Pradier
Date:
Subject: Re: Is a primary key made of a couple columns so much better than a unique() constraint ?