I have deleted one row(row 20) in my "table category" ,please let me know that how can i reorder the catid (primary key)? at this time it is 21 after 19.
Thanks
|
I have deleted one row(row 20) in my "table category" ,please let me know that how can i reorder the catid (primary key)? at this time it is 21 after 19. Thanks |
|||||
|
|
You cannot. The closest you can get is |
|||
|
|
|
If you care enough about your primary key values that such a value is unwanted, you shouldn't be using auto-number primary keys in the first place. The whole point with a auto-number key is that you say "As long as the key is unique, I don't really care about its value." |
|||
|
|
|
Don't mess with the primary keys. They should never change and you should not use them in your app for anything but joining tables. Add a new column if you need a gapless index and update this column accordingly when you do inserts/removes. This might sound like useless work for you right now, but it will save you a lot of pain later. |
|||
|
|
|
Try this:
You might also want to rethink / redesign. Renumbering the entire table when you delete a row doesn't seem likely to be either practical or necessary. |
|||
|
|
|
What do you mean by reordering primary key? If you are saying that you want the primary key to take 20 instead of 21, then I afraid you can't do that straightaway. All you can do, is to drop the primary key constraint, then change the 21 to 20, and reapply back the primary key constraint |
|||
|
|
|
David is right about not using primary key for indexing and such. If you'll just have to change a particular primary key value once (I've done it sometimes during migration) you could of course set identity_insert on and copy the row with a insert select and then delete the original one. For recreating a sort order or an column used as an index in your application you could use the following stored procedure:
Results: An example of SortOrders will go from 1,2,5,7,10,24,36 to 10,20,30,40,50,60,70 |
|||
|
|
|
Actually you can. If your rows have unique enough data and you are using PHPmyAdmin
Now it's resorted! |
|||
|
|