vote up 0 vote down star

I'm switching from MySQL to PostgreSQL and was wondering how I can do autoincrement values. I saw in the PostgreSQL docs a datatype "serial", but I get syntax errors when using it (in v8.0).

flag

79% accept rate
if you'd provide the query and error you're getting - perhaps someone could tell you what is wrong with the query. – depesz Apr 25 at 9:42

1 Answer

vote up 7 vote down check

Yes, SERIAL is the equivalent function.

CREATE TABLE foo ( id SERIAL, bar varchar);

INSERT INTO "foo" (bar) values ('blah'); INSERT INTO "foo" (bar) values ('blah');

SELECT * FROM foo;

1,blah 2,blah

SERIAL is just a create table time macro around sequences. You can not alter SERIAL onto an existing column.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.