Re: adding SERIAL to a table

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: adding SERIAL to a table
Дата
Msg-id Pine.LNX.4.33.0309040900430.27003-100000@css120.ihs.com
обсуждение исходный текст
Ответ на Re: adding SERIAL to a table  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Mon, 1 Sep 2003, Tom Lane wrote:

> "Claudio Lapidus" <clapidus@hotmail.com> writes:
> > So? Is there a way to add the sequence to an existing table?
>
> Sure.  You have to break the SERIAL down to its component parts though.
> Something like
>
>     CREATE SEQUENCE seq;
>     ALTER TABLE tab ADD COLUMN ser INTEGER;
>     UPDATE tab SET ser = nextval('seq');    -- this will take awhile
>     ALTER TABLE tab ALTER COLUMN ser SET DEFAULT nextval('seq');
>     ALTER TABLE tab ALTER COLUMN ser SET NOT NULL;
>     -- possibly also add a UNIQUE constraint

For folks just starting out, you can also do it this way:

=>begin;
=>create table a (info text, date date);
CREATE TABLE
=> insert into a values ('abc','2003-04-03');
INSERT 1127459 1
=> create table b (info text, date date, id serial);
NOTICE:  CREATE TABLE will create implicit sequence "b_id_seq" for SERIAL
column "b.id"
CREATE TABLE
=> insert into b (select * from a);
INSERT 1127468 1
=> select * from b;
 info |    date    | id
------+------------+----
 abc  | 2003-04-03 |  1

=>drop table a;
DROP TABLE
=> alter table b rename to a;
ALTER TABLE
=>commit;


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

Предыдущее
От: Alvaro Herrera Munoz
Дата:
Сообщение: Re: TCL trigger doesn't work after deleting a column
Следующее
От: Tom Lane
Дата:
Сообщение: Re: TCL trigger doesn't work after deleting a column