Hi, how do i enter data into tables with columns which have datatypes of Autonumber?
Here is the code column that has a datatype autonumber when i created it in SQL Management Studio
Code:
CaseNumber int IDENTITY(1,1) NOT NULL PRIMARY KEY
When I imported the tables into Access, the column CaseNumber was set to Autonumber. I've done some research but I can't get it to work.
What I found goes like this:
INSERT INTO (col2,col3) values ('value2','value3');
col1 needs not to be included because it is autonumber.