Hi,
I've created a table via the SQL Firehose:
CREATE TABLE NewTableTest ( ID int IDENTITY(1,1) PRIMARY KEY, Name varchar(255) NOT NULL )
Then I run this a few times to add records to the table:
INSERT INTO NewTableTest (Name) VALUES ('MyName')
The first record will be ID=2, the next will be ID=4 etc. It jumps a number every time...
What the hell am I doing wrong?