PostgreSQL - Create a new primary key auto-increment column
Method 1: Using the SERIAL
data type (Pre-PostgreSQL 10):
This command adds a new column named "id" to the existing table and sets it as the primary key with an auto-increment feature using the SERIAL
data type.
Method 2: Using the GENERATED
column feature (PostgreSQL 12 and later):
Last updated