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).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes, SERIAL is the equivalent function.
SERIAL is just a create table time macro around sequences. You can not alter SERIAL onto an existing column. |
|||||||||||||||||||||
|
|
You can use any other integer data type, such as Example :
Better to use your own data type, rather than user serial data type. |
|||||||||||||||||||
|
|
If you want to add sequence to id in the table which already exist you can use:
|
|||||||
|
|
In the context of the asked question and in reply to the above comment, creating SERIAL implicitly creates sequences, so for the above example-
CREATE TABLE would implicitly create sequence "foo_id_seq" for serial column "foo.id". Hence, SERIAL [4 Bytes] is good for its ease of use unless you need a specific datatype for your id. |
||||
|
|