|
-
Jul 4th, 2000, 02:21 PM
#1
Thread Starter
Member
Creating DB Tables using SQL
Does anyone know how to create a table in an Access database using SQL, creating a primary key field which increments automatically?
-
Jul 4th, 2000, 02:25 PM
#2
Lively Member
CREATE TABLE Test (ID AutoIncrement Constraint PrimaryKey PRIMARY KEY, OtherField TEXT);
Roger
-
Jul 4th, 2000, 02:36 PM
#3
Thread Starter
Member
-
Jul 5th, 2000, 06:07 AM
#4
Incidentally... 
That's called DDL (data manipulation language - a subset of SQL) the other one is DML (data manipulation language - SELECT and all that lark)
Geek signing off!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|