i have a table with one field set as autonumber. if i want to insert records into this table from another table using sql,
insert into table1 select * from table2
will the autonumber field be updated automatically? how exactly should i give the sql to insert all the fields in table2 into table1 with the autonumber of table1 automatically incremented
insert into table1 select * from table2
will the autonumber field be updated automatically? how exactly should i give the sql to insert all the fields in table2 into table1 with the autonumber of table1 automatically incremented