Re: PRIMARY KEY and INDEX

Поиск
Список
Период
Сортировка
От Achilleus Mantzios
Тема Re: PRIMARY KEY and INDEX
Дата
Msg-id Pine.LNX.4.44.0409021649070.5211-100000@matrix.gatewaynet.com
обсуждение исходный текст
Ответ на PRIMARY KEY and INDEX  ("Nosyman" <nosyman@easymail.ro>)
Список pgsql-sql
O kyrios Nosyman egrapse stis Sep 2, 2004 :

> It is necessary to define an index for a primary key column?
> 
> Let's have an example
> CREATE TABLE users(
> id_user INTEGER PRIMARY KEY,
> user_name VARCHAR(25)
> );
> 
> Does PgSQL automatically create an index for id_user (primary key) or it
> must be created by hand?

Yes a unique index is created automatically so as to enforce the 
PK constraint.

> 
> Thanks
> 
> 
> _________________________________________________________________
> Message
> sent using ITCNet free webmailer (http://www.easymail.ro)
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
> 

-- 
-Achilleus



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

Предыдущее
От: "Nosyman"
Дата:
Сообщение: PRIMARY KEY and INDEX
Следующее
От: Devrim GUNDUZ
Дата:
Сообщение: Re: PRIMARY KEY and INDEX