I defined an attribute in my table of type serial4, so when I insert a new row, the attribute is automatically incremented.
I used to do like this:
myTable (id : serial4, name : varchar(25), whatever : whatever, ...);
and when I want to insert a new entry:
insert into myTable (name, whatever, ...) values ('foo', ...);
(i just strip off the id attribute in the association list).
now if my table has a large number of attributes, the association list is exhausting to write.
I just want to write :
insert into myTable values (...);
but if the first attribute of myTable is the serial4 id, what should I write in the values list ?
insert into myTable values (?, 'foo', ...);
to get the id being incremented +1 from the last inserted value ?