Possible Duplicate:
MySQL: Reorder/Reset auto increment primary key?
if I delete from my table a ligne and in this table i have an auto increment ID , DELETE From table where id=2
after this the table will be like this
 ID   | NAme
1        aaa
3        cccc
how can i fix the ID to be like this
ID   | NAme
1        aaa
2        cccc
3        dddd  
 
     
     
    