Re: autoincrement question

From: "Greg Cocks" <gcocks(at)stoller(dot)com>
To: <pgsql-novice(at)postgresql(dot)org>
Subject: Re: autoincrement question
Date: 2008-01-07 22:52:45
Message-ID: 66F6CF82BF58CE4DB4285BE816B297E83BABE2@tribble.SMStoller.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

--------------------------------

-----Original Message-----
From: Richard Broersma Jr [mailto:rabroersma(at)yahoo(dot)com]
Sent: Monday, January 07, 2008 3:40 PM
To: Jack Albright; Sean Davis
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: [NOVICE] autoincrement question

--- On Mon, 1/7/08, Sean Davis <sdavis2(at)mail(dot)nih(dot)gov> wrote:


> create table junktable (
> pk1 serial primary key
> );
>
> will get you what you want. Check out the docs for the
> "serial" column type.

|Also, if the table and column already exist, you can alter the table's
|column to become an auto-incrementing column.

|http://www.postgresql.org/docs/8.3/static/datatype-numeric.html#DATATYP
E-|SERIAL

|You can substitute the create table statement with an appropriate alter
|table alter column statement from the example demonstrated in the above
|link.

If you are using an existing field with existing (unique) values, make
sure that you (re)set the SERIAL's index to the next value that you want
to use...

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Oeschey, Lars (I/EK-142, extern) 2008-01-08 09:51:11 Problem restoring database
Previous Message Richard Broersma Jr 2008-01-07 22:39:39 Re: autoincrement question