Mar 9, 2005 #1 fastrunr Technical User Joined Nov 4, 2004 Messages 35 Location US Within a make table query, is there any way to create an autonumber field and set it as the primary key of the new table? Thanks! Liz
Within a make table query, is there any way to create an autonumber field and set it as the primary key of the new table? Thanks! Liz
Mar 9, 2005 #2 sfreeman Programmer Joined Aug 18, 2004 Messages 224 Location US CREATE TABLE Employees ( EmpID Counter Not Null Constraint EmpID primary key , First_Name TEXT(20) , Last_Name TEXT(25) , dob DATETIME ); Sam_F "90% of the problem is asking the right question. Upvote 0 Downvote
CREATE TABLE Employees ( EmpID Counter Not Null Constraint EmpID primary key , First_Name TEXT(20) , Last_Name TEXT(25) , dob DATETIME ); Sam_F "90% of the problem is asking the right question.