hi friends,
automatically updated id.
create table emp(_id int primary key identity(1,1))
eg
i have 10 records,
i delete first record using id
delete from emp where _id=1
it display
2
3
4
but i want to automatically updated if i delete record id 1
1
2
3
4
please give the solution for this,
thanks.