Is there any way using which I can get the last row I have updated of the table.

For Ex:- my table has 1000 records in it. I have updated the value of 500th record of table X. So, I want the ID 500 in return.

Thanks in advance.

Regards,

link|improve this question

49% accept rate
feedback

1 Answer

I don't think this feature exists with MySQL. However you can get the same effect by adding a timestamp column:

ALTER TABLE yourtable
   ADD COLUMN last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

This would make the last_update column pretty much automatically maintained. Now you can select from yourtable the last updated row based on the timestamp.

link|improve this answer
3  
And... add an index to the last_update column. – gahooa Aug 27 '09 at 4:56
@gahooa Very true :) . – Alterlife Aug 27 '09 at 4:57
Thanks for the input. It is a great help. – MySQL DBA Aug 27 '09 at 6:33
feedback

Your Answer

 
or
required, but never shown

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