How to reorder the auto number column?
hi every body
i need to reorder the auto number column in sql server 2000
i.e
let we have the column called "Id" and this column is auto numbering
(aka identity)and we have the following values :
1,2,3,4,5,6 if we delete the record which have id=4 the values will be:
1,2,3,5,6 (see the order of number )
i need to reorder this values to be :
1,2,3,4,5
any one help me plz?!!
thank you
|