I have to find the next available id (if there are 5 data in database, I have to get the next available insert place which is 6) in a MySQL database. How can I do that?
I have used MAX(id), but when I delete some rows from the database, it still holds the old max value it didn't update.
|
|
I don't think you can ever be sure on the next id, because someone might insert a new row just after you asked for the next id. You would at least need a transaction, and if I'm not mistaken you can only get the actual id used after inserting it, at least that is the common way of handling it -- see http://dev.mysql.com/doc/refman/5.0/en/getting-unique-id.html |
|||||||
|
|
The shortest one i found on mysql developer site:
mind you if you have few databases with same tables, you should specify database name as well. |
|||||||||||
|
|
In addition to Lukasz Lysik's answer - LEFT-JOIN kind of SQL.
Hope it will help some of visitors, although post are rather old. |
|||
|
|
|
you said:
what you're asking for is very dangerous and will lead to a race condition. if your code is run twice at the same time by different users, they will both get 6 and their updates or inserts will step all over each other. i suggest that you instead |
|||
|
|
|
Given what you said in a comment:
There is a way to do what you're asking, which is to ask the table what the next inserted row's id will be before you actually insert:
there will be a field in that result set called "Auto_increment" which tells you the next auto increment value. |
||||
|
|
|
As I understand, if have id's: 1,2,4,5 it should return 3.
|
||||
|
|
|
If you want to select the first gap, use this:
There is an
however, it will be slow, due to optimizer bug in |
||||
|
|
|
One way to do it is to set the index to be auto incrementing. Then your SQL statement simply specifies NULL and then SQL parser does the rest for you.
|
|||
|
|
If this is used in conjunction for INSERTING a new record you could use something like this. (You've stated in your comments that the id is auto incrementing and the other table needs the next ID + 1)
This is pseudocode but you get the idea |
|||
|
|
|
If you really want to compute the key of the next insert before inserting the row (which is in my opinion not a very good idea), then I would suggest that you use the maximum currently used id plus one:
But I would suggest that you let MySQL create the id itself (by using a auto-increment column) and using
The returnset now contains only one column which holds the id of the newly generated row. |
|||
|
|
|
The problem with many solutions is they only find the next "GAP", while ignoring if "1" is available, or if there aren't any rows they'll return NULL as the next "GAP". The following will not only find the next available gap, it'll also take into account if the first available number is 1:
|
|||
|
|
