
Identity field is usually used as a primary key. When you insert a new record into your table, this field automatically assign an incremented value from the previous entry. Usually, you can't insert your own value to this field.In this article, I am going to expose the tips for inserting your own value to this field. It is simple and easy. Consider you have the following Customer table.CREATE TABLE Customer( ID int IDENTITY, Name varchar(100),.