ok, if i have a table like this :
"CREATE TABLE groups
(
group_id int unsigned not null auto_increment,
PRIMARY KEY(group_id)
)";
and I delete entries from it is there anyway to get deleted slots reused? e.g. If I delete group_id=10 can i make a subsequent addition to the table reuse slot 10?
thanks
(retrospective appologies for posting in the wrong forum...)