hello ,
i have table in sql server with id number auto increment
1
2
14
154
5
4
654
3
can i fix this ?
i want it like 1,2,3,4,5,6....
In editor you can't change this. You need to either take backup of all the records and truncate table and re-insert by ordering.
Or you need to use order by in your query to display the records.
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.