Postgresql Documentation: 8.1.4. Series Types
CREATE TABLE tablename (
colname SERIAL
);
Types of data serialand bigserialare not true types, but merely a convenience to refer to create a unique identifier columns (similar to an AUTO_INCREMENT property, supported by some other databases).
source
share