Re: SERIAL type not autoincremented - Mailing list pgsql-admin

From jseymour@linxnet.com (Jim Seymour)
Subject Re: SERIAL type not autoincremented
Date
Msg-id 20040702180934.4DEA4430E@jimsun.linxnet.com
Whole thread Raw
In response to SERIAL type not autoincremented  (teknet@poczta.onet.pl)
List pgsql-admin
teknet@poczta.onet.pl wrote:
>
> Hello
> i have:
> create table student(
> id                      SERIAL NOT NULL,
> name               VARCHAR(35) NOT NULL,
> primary key (id)
> );
>
> and when i try to insert like this:
> insert into student (name) values('me');
> i receive error:
> ERROR:  duplicate key violates unique constraint "student_pkey"

You must be leaving something out of the story...

$ psql
Password:
Welcome to psql 7.4.2, the PostgreSQL interactive terminal.
...
jseymour=# create table student(
jseymour(# id                      SERIAL NOT NULL,
jseymour(# name               VARCHAR(35) NOT NULL,
jseymour(# primary key (id)
jseymour(# );
NOTICE:  CREATE TABLE will create implicit sequence "student_id_seq"
  for "serial" column "student.id"
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
  "student_pkey" for table "student"
CREATE TABLE
jseymour=# insert into student (name) values('me');
INSERT 8776502 1
jseymour=# insert into student (name) values('me');
INSERT 8776503 1
jseymour=# insert into student (name) values('me');
INSERT 8776504 1
jseymour=# select * from student;
 id | name
----+------
  1 | me
  2 | me
  3 | me
(3 rows)


Seems to work here.

Jim

pgsql-admin by date:

Previous
From: teknet@poczta.onet.pl
Date:
Subject: SERIAL type not autoincremented
Next
From: Bruno Wolff III
Date:
Subject: Re: SERIAL type not autoincremented