I'm working on a portal / large website and I have a question as to how to optimise my mySql / PDO queries in a special case.
I developed it this way : when I'm inserting an iD (unique / primary) I do the following code to find out the highest unused id in a specific table, and then do an INSERT with that id ($next_avail).
After a short chat last days on stackoverflow I got the ideea that AUTO_INCREMENT is best for this action.
But now, I realize that in most of the cases I also use $next_avail (the value of the AUTO_INCREMENT how it would be) to insert in other tables as a column, as well.
So my code makes sense for these inserts.
My question is, how would this code below work for millions of rows as speed, for each insert I do depends on it.
Please write comments and ask me to clarify what is not clear for you, in this question.
Thanks, Adrian
$next_avail = 1 ;
$stmt = $db->prepare("SELECT news_id from mya_news ORDER BY news_id DESC LIMIT 1");
$stmt->execute();
while ( list($id) = $stmt->fetch(PDO::FETCH_BOTH) ) {
$next_avail = $id + 1;
}


auto_incrementwill be. First off - you are incrementing the last ID by 1. MySQL can be set up to increment the auto_increments by a different offset. Second - say you got number 10 as your possible next_id. An insert occurs that should generate number 10, but something goes wrong, transaction fails and the number is not used, next one in line will be 11. You calculated that next in line is 10, but in reality you got a different number. Welcome to lost and inaccurate references world. – N.B. Oct 11 '12 at 12:53