vote up 2 vote down star

Hi,

Is it possible to define a timestamp column in a MySQL table that will automatically be updated every time a field in the same row is modified? Ideally this column should initially be set to the time a row was inserted.

Cheers, Don

flag

39% accept rate

3 Answers

vote up 4 vote down check

That is the default functionality of the timestamp column type. However, note that the format of this type is yyyymmddhhmmss (all digits, no colons or other separation).

EDIT: The above comment about the format is only true for versions of MySQL < 4.1... Later versions format it like a DateTime

link|flag
According to the MySQL 5.0 docs, the timestamp type is in the same format as datetime (eg 'YYYY-MM-DD HH:MM:SS'). – Mark Biek Sep 30 '08 at 20:58
Thanks, Mark, the last time I actually used a timestamp was on version 3.23. I've edited my response to show the version difference. – Adam Bellaire Sep 30 '08 at 21:01
vote up 0 vote down

You can use the timestamp column as other posters mentioned. Here is the SQL you can use to add the column in:

ALTER TABLE `table1` ADD `lastUpdated` TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ;

This adds a column called 'lastUpdated' with a default value of the current date/time. When that record is updated (lets say 5 minutes later) that timestamp will automatically update to the current time.

link|flag
The following appears to be sufficient: ALTER TABLE table1 ADD lastUpdated TIMESTAMP; – Don Oct 2 '08 at 14:44
vote up -1 vote down

IIRC, the first column in a table of type timestamp is set when a record is created and cannot be changed. The 2nd column of type timestamp is set whenever a record is updated. Or vice versa.

I haven't done much MySQL work, so you'll want to verify this.

link|flag

Your Answer

Get an OpenID
or

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