I have a table, which regularly is inserted with new data.
I need to get the very last ID of the table.
How can I do this?
Is it similar to: SELECT MAX(id) FROM table ?
| show 4 more comments |
|
If you're using PDO, use If you're using Mysqli, use If you're still using Mysql:
But if you have to, use |
|||||||||||||||||
|
|
there is a function to know what was the last id inserted in the current connection
plus using max is a bad idea because it could lead to problems if your code is used at same time in two different sessions. That function is called mysql_insert_id |
|||
|
|
|
It's ok. Also you can use LAST_INSERT_ID() |
|||
|
|
|
With PDO:
With Mysqli:
Please, don't use |
||||
|
|
|
Use mysql_insert_id() function. See similar question here |
|||
|
|
|
What you wrote would get you the greatest |
||||
|
|
|
It's ok to use mysql_insert_id(), but there is one specific note about using it, you must call it after executed INSERT query, means in the same script session. If you use it otherwise it wouldn't work correctly. |
|||
|
|
|
NOTE: if you do multiple inserts with one statement mysqli::insert_id will not be correct. The table:
Now if you do:
The mysqli::insert_id will be 1 not 3. To get the correct value do:
This has been document but it is a bit obscure. |
||||
|
|
|
Using
|
||||
|
|
|
By all this discussion I assume that the reason to check max id is to know what id should be next.. (if my max id is 5 then next will be 5+1=6). >>If this is not the reason, my best apologies Case if someone else INSERTs information between your CHECK and INSERT would give you wrong ID. So It can be solved if you would create hash that could include timestamp or other unique value. Then in the same function you can insert your information with empty values and your hash. That would create ID if you have AUTO_INCRECEMENT selected. Then in the same function you would still have your hash and you could look for id with the same hash. And then you could complete populating empty values with mysql UPDATE. This includes a bit more connections, but it is still a way to do it... Good luck solving it. |
|||
|
|
INSERTand query forMAX(id), you may get an id that's not your last id. – deceze Nov 6 '09 at 7:07