Jump to content

reorder mysql autoincrement


tidus97

Recommended Posts

idk if that works I used to mostly do just a foreach loop.. but this looks like it should work =\

<?php
$array = array("0" => "a","1" => "b", 3 => "d");
$arrKey = range(0,count($array) - 1);
$array = array_combine($arrKey,$array);
?>

Just out of curiosity, why do you want to re-order them so that your never missing a number?

 

typically the auto-increment id is basically just used for identifying the row in the db so you can select it, or modify it in some way.

 

Basically I treat the auto-increment id as something only the code cares about and that no human is going to need for any reason.... If I need id's that humans need then I will make a new id field for that purpose.

 

I have seen people wanting to do this before, and have never heard a good reason for doing so.

 

Nate

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.