R
RW
Am I right in thinking that if you want to use an INSERT statement to add
records to a table with an autonumber field, you can't use:
INSERT into xxx VALUES(value1, value2 etc)
unless you want to supply the autonumber values yourself and you have to use:
INSERT into xxx (field1, field2 etc ) VALUES (value1, value2 etc) instead?
This doesn't seem very user-friendly if you have lots of required fields in
your table.
records to a table with an autonumber field, you can't use:
INSERT into xxx VALUES(value1, value2 etc)
unless you want to supply the autonumber values yourself and you have to use:
INSERT into xxx (field1, field2 etc ) VALUES (value1, value2 etc) instead?
This doesn't seem very user-friendly if you have lots of required fields in
your table.