sequence primary key - Mailing list pgsql-novice

From Virginie Garcia
Subject sequence primary key
Date
Msg-id 01071717435300.01122@BIOINFO1.pmtg.u-bordeaux2.fr
Whole thread Raw
In response to Confused about rights  (Perry The Cynic <perry@cynic.org>)
Responses RE: sequence primary key  ("Robby Slaughter" <webmaster@robbyslaughter.com>)
Re: sequence primary key  (Jason Earl <jdearl@yahoo.com>)
List pgsql-novice
Hi all,

my question is about sequences and primary key of a table.
More details : I create a sequence and a table with these lines :

CREATE SEQUENCE "my_id" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 START 1
CACHE 1;

CREATE TABLE "toto" (
    "toto_id" integer PRIMARY KEY DEFAULT nextval('"my_id"'),
    "db" text);

in a a sql file.
In fact, when I fill database I would like "toto_id" field to be filled
directly by sgdb by using sequence "my_id" but not by me.
This way doesn't work. It's perhaps a big mistake !!!
How is-it possible, so ?
Thanks a lot.

Virginie.

pgsql-novice by date:

Previous
From: "Giorgio A."
Date:
Subject: COUNT doesn't shows items with 0 occurrance
Next
From: "Robby Slaughter"
Date:
Subject: RE: COUNT doesn't shows items with 0 occurrance