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 ?
|
|
|
|
|
Use |
||
|
|
|
|
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. |
||
|
|
|
|
$lastid = mysql_insert_id(); |
||
|
|
|
|
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() |
||
|
|
|
|
Use mysql_insert_id() function. See similar question here |
||
|
|
|
|
What you wrote would get you the greatest |
|||
|
|
INSERTand query forMAX(id), you may get an id that's not your last id. – deceze Nov 6 at 7:07