Mar 9, 2005 #1 fastrunr Technical User Nov 4, 2004 35 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 Aug 18, 2004 224 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.