Reinsert a deleted record back at the same Id while id is a Primary key. Sample code below.
Select * from tblTest where Id=1
delete from tblTest where Id=1
Insert INto tblTest
values ('x','y') but in the place of Id= 1
The issue is:
- The table now start as Id= 2 when I do a (
Select * from tblTest
) - I can't reseed Identity
- I don't want to restore the .db just for 1 record.