Default sequence values

From: "Seth Banks" <seth(at)subimage(dot)com>
To: <pgsql-sql(at)postgreSQL(dot)org>
Subject: Default sequence values
Date: 2000-02-27 07:45:36
Message-ID: NOEPJACOBMIOEOLHKIODIEFLCBAA.seth@subimage.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I'm getting errors in pgsql when I try to run this create table statement
past...Could someone help me out here? I think it's the default value of
company_id that's erroring out. Any help is appreciated.

CREATE SEQUENCE company_id_seq;
CREATE TABLE company (
company_id int4 PRIMARY KEY DEFAULT nextval(company_id_seq),
parent_id int4 NULL,
name text NOT NULL,
address_1 text NULL,
address_2 text NULL,
fax text NULL,
city text NULL,
state_province text NULL,
zip text NULL,
country text NULL,
description text NULL,
stock_symbol text NULL
);
CREATE INDEX name_idx on company (name);

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2000-02-27 07:48:20 Re: [SQL] Default sequence values
Previous Message mpg4 2000-02-27 02:29:51 Nested BEGIN...COMMIT transactions