Re: Unique primary index?

Поиск
Список
Период
Сортировка
От PFC
Тема Re: Unique primary index?
Дата
Msg-id op.ss3av5both1vuj@localhost
обсуждение исходный текст
Ответ на Unique primary index?  (orange_crush_068@hotmail.com)
Ответы Re: Unique primary index?
Список pgsql-sql
index is... an index !

UNIQUE is an index which won't allow duplicate values (except for NULLS)

PRIMARY KEY is exactly like UNIQUE NOT NULL, with the bonus that the  
database knows this column is the primary key so you can use stuff like  
NATURAL JOIN without telling which column you want to use.



>
> What are the major differences between Unique, primary index & just
> plain index?
>
> When creating tables I nominate one of these, but not sure what the
> difference is?
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend
>




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

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: Unique primary index?
Следующее
От: PFC
Дата:
Сообщение: Re: ENUM like data type