How can I create a new AutoNumber(Primary Key) in a query

O

Ofer Cohen

It is better to create a table with all the keys/index/properties you want,
and then use an append query, instead of using a create table query
Run a query to delete the data from the table, and then append the new data
 
J

John Spencer

As far as I know you can't.

What you can do is create the table structure first and then use an append
query to add records to the table.
 
T

Timmy

I don't think I can do that because I'm combining two unrelated tables in my
query to create a sigle table
 
T

Timmy

Thanks I'll try that

John Spencer said:
As far as I know you can't.

What you can do is create the table structure first and then use an append
query to add records to the table.
 
Top