Default sequence values

Поиск
Список
Период
Сортировка
От Seth Banks
Тема Default sequence values
Дата
Msg-id NOEPJACOBMIOEOLHKIODIEFLCBAA.seth@subimage.com
обсуждение исходный текст
Ответы Re: [SQL] Default sequence values
Список 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
textNULL, state_province text NULL, zip            text NULL, country        text NULL, description    text NULL,
stock_symbol  text NULL
 
);
CREATE INDEX name_idx on company (name);



В списке pgsql-sql по дате отправления:

Предыдущее
От: mpg4@duluoz.net
Дата:
Сообщение: Nested BEGIN...COMMIT transactions
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [SQL] Default sequence values