Why there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause?

CREATE TABLE `foo` (
  `ProductID` INT(10) UNSIGNED NOT NULL,
  `AddedDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdatedDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=INNODB;

The error that results:

Error Code : 1293

Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause

link|improve this question

71% accept rate
1  
It's actually much worse than what the error message make it look to be. You cannot define a column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause once there's a column with TIMESTAMP data type, no matter if it got an extra clause! – Nicolas Buduroi Jan 14 '11 at 4:11
1  
So this work: CREATE TABLE foo (created_on TIMESTAMP DEFAULT CURRENT_TIMESTAMP, updated_on TIMESTAMP), but not this: CREATE TABLE foo (updated_on TIMESTAMP, created_on TIMESTAMP DEFAULT CURRENT_TIMESTAMP) – Nicolas Buduroi Jan 14 '11 at 4:14
feedback

4 Answers

up vote 10 down vote accepted

I also wondered that long time ago. I searched a bit in my history and I think that this post: http://lists.mysql.com/internals/34919 represents the semi-official position of MySQL (before Oracle's intervention ;))

In short:

this limitation stems only from the way in which this feature is currently implemented in the server and there are no other reasons for its existence.

So their explanation is "because it is implemented like this". Doesn't sound very scientific. I guess it all comes from some old code. This is suggested in the thread above: "carry-over from when only the first timestamp field was auto-set/update".

Cheers!

link|improve this answer
Wow, that really stinks. Hope we see a fix soon. – BoltClock Dec 20 '10 at 13:28
Another great MySQL limitation for us to enjoy! – Nicolas Buduroi Jan 14 '11 at 4:02
feedback

1.change data types of columns to datetime 2.set trigger such as:

DROP TRIGGER IF EXISTS `update_tablename_trigger`;
DELIMITER //
CREATE TRIGGER `update_tablename_trigger` BEFORE UPDATE ON `tablename`
 FOR EACH ROW SET NEW.`column_name` = NOW()
//
DELIMITER ;
link|improve this answer
I've always considered this method much less jankety than the half-implemented CURRENT_TIMESTAMP functionality. – TehShrike Jul 13 '11 at 17:45
feedback

Well a fix for you could be to put it on the UpdatedDate field and have a trigger that updates the AddedDate field with the UpdatedDate value only if AddedDate is null.

link|improve this answer
feedback

we can give a default value for the timestamp to avoid this problem. this post give the detail workaround http://gusiev.com/2009/04/update-and-create-timestamps-with-mysql/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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