Re: PRIMARY KEY and INDEX - Mailing list pgsql-sql

From Devrim GUNDUZ
Subject Re: PRIMARY KEY and INDEX
Date
Msg-id Pine.LNX.4.61.0409021747590.1213@emo.org.tr
Whole thread Raw
In response to PRIMARY KEY and INDEX  ("Nosyman" <nosyman@easymail.ro>)
List pgsql-sql
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hi,

On Thu, 2 Sep 2004, Nosyman wrote:

> 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?

You could give it a try before asking:

test=# CREATE TABLE users(
test(# id_user INTEGER PRIMARY KEY,
test(# user_name VARCHAR(25)
test(# );
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index 
"users_pkey" for table "users"
CREATE TABLE

Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.org                devrim.gunduz~linux.org.tr            http://www.tdmsoft.com
http://www.gunduz.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBNzLFtl86P3SPfQ4RAuOZAKDoE5NFtu7B3Dg356+CH5P9CGp7cgCfaBQm
33nie6C/x2PIfA0D1zqWgLE=
=QlUA
-----END PGP SIGNATURE-----


pgsql-sql by date:

Previous
From: Achilleus Mantzios
Date:
Subject: Re: PRIMARY KEY and INDEX
Next
From: Jeff Boes
Date:
Subject: Re: Complicated "group by" question