vote up 1 vote down star

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 ?

flag

yes, you this query will return the last id of the table. But one condition is that ID must be Primary key. So you can avoid repentance. – sathish Nov 6 at 6:52
1  
@sathish: The main problem of that method is concurrency. – CMS Nov 6 at 7:02
To elaborate: The problem with it is that if somebody else inserts something into the table between your INSERT and query for MAX(id), you may get an id that's not your last id. – deceze Nov 6 at 7:07

7 Answers

vote up 6 vote down check

Use mysql_insert_id().

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

$lastid = mysql_insert_id();

link|flag
vote up 4 vote down

there is a function to know what was the last id inserted in the current connection

mysql_query('INSERT INTO FOO(a) VALUES(\'b\')');
$id = mysql_insert_id();

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

link|flag
vote up 3 vote down

It's ok. Also you can use LAST_INSERT_ID()

link|flag
vote up 4 vote down

Use mysql_insert_id() function.

See similar question here

link|flag
vote up 2 vote down

What you wrote would get you the greatest id assuming they were unique and auto-incremented that would be fine assuming you are okay with inviting concurrency issues.
Since you're using MySQL as your database, there is the specific function LAST_INSERT_ID() which only works on the current connection that did the insert.
PHP offers a specific function for that too called mysql_insert_id.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.