vote up 3 vote down star
1

I have the following table schema;

CREATE TABLE `db1`.`sms_queue` (
  `Id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `Message` VARCHAR(160) NOT NULL DEFAULT 'Unknown Message Error',
  `CurrentState` VARCHAR(10) NOT NULL DEFAULT 'None',
  `Phone` VARCHAR(14) DEFAULT NULL,
  `Created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `LastUpdated` TIMESTAMP NOT NULL ON UPDATE CURRENT_TIMESTAMP,
  `TriesLeft` tinyint NOT NULL DEFAULT 3,
  PRIMARY KEY (`Id`)
)
ENGINE = InnoDB;

It fails with the following error:

ERROR 1293 (HY000): Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause.

My question is, can I have both of those fields? or do I have to manually set a LastUpdated field during each transaction?

flag

3 Answers

vote up 3 vote down check

You can have them both, just take off the "CURRENT_TIMESTAMP" flag on the created field. Whenever you create a new record in the table, just use "NOW()" for a value.

Or.

On the contrary, remove the 'ON UPDATE CURRENT_TIMESTAMP' flag and send the NOW() for that field. That way actually makes more sense.

link|flag
Is this the only way? I can't have the database look after all that detail? – Xenph Yan Nov 6 '08 at 4:46
According to the MySql manual, CURRENT_TIMESTAMP is a synonym for NOW() so I don't think this will work. – tvanfosson Nov 6 '08 at 4:48
I'm sure you can, it's just that CURRENT_TIMESTAMP is a flag reserved for only one field. Either way, if you had that flag in there, regardless what value you have for that field when you add a record, it will always be the current timestamp, hence the name. – Stephen Nov 6 '08 at 4:48
URL: dev.mysql.com/doc/refman/… – tvanfosson Nov 6 '08 at 4:48
@tvanfosson, I think he meant as part of the insert statement. – Xenph Yan Nov 6 '08 at 4:49
show 3 more comments
vote up 4 vote down

From the documentation:

For one TIMESTAMP column in a table, you can assign the current timestamp as the default value and the auto-update value. It is possible to have the current timestamp be the default value for initializing the column, for the auto-update value, or both. It is not possible to have the current timestamp be the default value for one column and the auto-update value for another column.

link|flag
+1 Thanks for the official weigh-in from the documentation. – Stephen Nov 6 '08 at 4:55
vote up 1 vote down

There is a trick how to have both timestamps.
But it has a little limitation.

Create and update timestamps with mysql.

link|flag
You aren't really supposed to post links to blog articles (especially your own) it kind of defeats the purpose. +1 anyway as the information was good. – Xenph Yan May 4 at 4:47

Your Answer

Get an OpenID
or

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