How do I auto increment the primary key in a SQL Server database table, I've had a look through the forum but can't see how.
I've looked the the properties but can't see an option, I have seen an answer …
I have a MS SQL 2005 database with a table Test with column ID. ID is an identity column.
I have rows in this table and all of them have their corresponding ID auto incremented value.
Now I would like to …
In SQL Server 2000 or above is there anyway to handle an auto generated primary key (identity) column when using a statement like the following?
Insert Into TableName Values(?, ?, ?)
My goal is to NOT use the column names at all.