+ 5
In PostgreSQL SERIAL is used to create autoincrement. CREATE TABLE test ( id SERIAL, name varchar);
8th Nov 2016, 5:20 PM
James Flanders