I am trying to create a table with a column whose AutoIncrement is Yes. Here is my query not sure what's wrong in it
CREATE TABLE testallcols(SOCycle Text(3), AutoKey integer AUTOINCREMENT NOT NULL, SOData LongBinary NOT NULL)
How do I get my AutoKey column to be an auto increment integer?
AutoKey AUTOINCREMENT
. – Everetteeverglade