PrimaryID index on CustomerID
I need some help in order to put the PrimaryID key in the new table,made with the MakeTable query.I have a table Customers and i make a new table Customers1. However the CustomerID field in the new Customers1 table is without the Autonumber, and is lascking the PrimaryID fields.
My command for the MakeTable query is the following:
SELECT customers.Customerid, customers.CompanyName INTO Customers1
FROM customers;
How can i put the PrimaryID key in the new Customers1 table?
I will be grateful for any reply