I have a table called ComplaintCodes which contains about 15 rows and 2 columns: ComplaintCodeId and ComplaintCodeText.
I want to insert a new row into that table but have its ID set to 1 which will also add 1 to all of the ID's that exist already. Is this possible?
EDIT
Using SQL Server and ComplaintCodeId is an identity / PK column
IDis anIDENTITYcolumn, you cannot do this. You can insert specific values for theIDcolumn into a new row, but you cannot change/update (add +1) to existing identity column's values. – marc_s Aug 17 '12 at 12:51