May 23, 2003 #1 nadjib Programmer May 14, 2003 23 CA Hi everybody, I want to know what is the syntax to create a table with an AutoNumber data type field : because i have a problem with the fellowing syntax: CREATE TABLE Table1 (NumVersion autonumber, Text char(50)) Thanks for the assistance nadjib
Hi everybody, I want to know what is the syntax to create a table with an AutoNumber data type field : because i have a problem with the fellowing syntax: CREATE TABLE Table1 (NumVersion autonumber, Text char(50)) Thanks for the assistance nadjib
May 23, 2003 #2 humbleprogrammer Programmer Oct 30, 2002 315 US CREATE TABLE Table1 (NumVersion AUTOINCREMENT,Field1 CHAR(50)) Hope this helps. Upvote 0 Downvote