How to insert a record into a table with a column declared with the SERIAL function
Using the DEFAULT keyword or by omitting the column from the INSERT list: INSERT INTO dataset (id, age, name, description) VALUES (DEFAULT, 42, ‘fred’, ‘desc’); INSERT INTO dataset (age, name, description) VALUES (42, ‘fred’, ‘desc’);