Re: indexing

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: si <s(at)remail(dot)net>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: indexing
Date: 2001-02-26 16:50:16
Message-ID: Pine.BSF.4.21.0102260848420.31970-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin


You can use the serial type to make the id,
although serial only guarantees uniqueness
not sequential numbers. something like:

create table foo (
id serial primary key,
name text
);

On Mon, 26 Feb 2001, si wrote:

> Hi,
>
> I am new to postgresql, Please can you guide me:
>
> I have created a table and I would like all the entries to be indexed with a number when the data is entered into the database, hence giving it a new id, every time some data is entered.
>
> e.g.
>
> I.D. | Name
> 1 | Jack
> 2 | Jill
>
>
> Does pgsql do this automatically? or do I have to create a seprate ID field like above, and check the database each time the data is entered and find out the highest number then increment it by 1 and then enter the data with the incremented number.
>
> If it automatically indexes the names when they are entered in to the database, Please can you show me how to find this index.
>
> Thanks,
> Si
>
> _____________________________________________________________
> Pick up your email anywhere in the world ---> http://www.remail.net
>

In response to

  • indexing at 2001-02-26 15:04:50 from si

Browse pgsql-admin by date

  From Date Subject
Next Message Stephan Szabo 2001-02-26 16:58:47 Re: not use pg_dump & pg_dumpall
Previous Message si 2001-02-26 15:04:50 indexing