Re: Is a primary key made of a couple columns so much better than a unique() constraint ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Is a primary key made of a couple columns so much better than a unique() constraint ?
Дата
Msg-id 21047.1128957731@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Is a primary key made of a couple columns so much better than a unique() constraint ?  (Martijn van Oosterhout <kleptog@svana.org>)
Ответы Re: Is a primary key made of a couple columns so much better than a unique() constraint ?  (David Pradier <david.pradier@clarisys.fr>)
Список 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 по дате отправления:

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: PostgreSQL 8.1 vs. MySQL 5.0?
Следующее
От: David Pradier
Дата:
Сообщение: Re: Is a primary key made of a couple columns so much better than a unique() constraint ?