Postgresql – Postgres INSERT INTO autoincrement table with single column primary key
I am trying to auto increment a table with a single column which is a primary key, eg: CREATE TABLE my_table (id PRIMARY KEY NOT NULL); I would usually just not include the primary key column in the insert statment…