Referring to the image attached below which is from SQL Server Management Studio, I have a table with records in it already, and the last record has an id of 7
. I wish to have this column auto increment as the primary key (as it did before some unknown stuff-up), obviously with the next record having an id of 8
.
Will specifying the seed as 7 mean the next record will be given an id of 7? Or will it be (7 + incrementValue) giving 8?