vote up 1 vote down star
1

Hi All,

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,

flag

63% accept rate

1 Answer

vote up 7 vote down

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|flag
3  
And... add an index to the last_update column. – gahooa Aug 27 at 4:56
@gahooa Very true :) . – Alterlife Aug 27 at 4:57
Thanks for the input. It is a great help. – MySQL DBA Aug 27 at 6:33

Your Answer

Get an OpenID
or

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