Re: Auto-incrementing field

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Jim Steil <jim(dot)steil(at)customcall(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Auto-incrementing field
Date: 2002-07-29 14:34:43
Message-ID: 20020729143443.GA20033@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Fri, Jul 26, 2002 at 14:49:30 -0500,
Jim Steil <jim(dot)steil(at)customcall(dot)com> wrote:
> Is there a data type in PostgreSQL that will 'auto-increment'? I have used
> this in MS SQL Server in the past and would like to continue to do so with
> PostgreSQL. Thanks for any help...

You probably want to use sequences. There is even a psuedo type "serial"
that makes using them easier.
Note that sequences provide unique values, but they can skip over values.
Normally this is OK for keys, but if you really want a counter then
you need to do something different.

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Jillian Carroll 2002-07-29 16:14:32 Altering psqlodbc.h
Previous Message Wim 2002-07-29 12:58:35 Still problems with pg_dump ad \dt...