Hi All,
I have a table ABC and Column EmployeeId and salary.
I have set identity of Employee Id.
and have inserted values in tables as
1 455454
2 45454
3 4545454
4 5656565
5 4545454
Now if I delete record at no four and insert a new record then it shows as:
1 455454
2 45454
3 4545454
5 4545454
6 56565645
but I want it as no 4
1 455454
2 45454
3 4545454
4 56565645
5 4545454
Please let me know how to do it.
Thanking You