vote up 10 vote down star
4

How do you set a default value for a MySQL Datetime column?

In SQL Server it's getdate(), what is the equivalant for MySQL? I'm using 5.x if that is a factor.

flag

76% accept rate
Why was this voted down? – Kev Oct 4 '08 at 4:20

9 Answers

vote up 8 vote down check

You can't do that with datetime...

but you can do it with timestamp

mysql> create table test (str varchar(32), ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
Query OK, 0 rows affected (0.00 sec)

mysql> desc test;
+-------+-------------+------+-----+-------------------+-------+
| Field | Type        | Null | Key | Default           | Extra |
+-------+-------------+------+-----+-------------------+-------+
| str   | varchar(32) | YES  |     | NULL              |       | 
| ts    | timestamp   | NO   |     | CURRENT_TIMESTAMP |       | 
+-------+-------------+------+-----+-------------------+-------+
2 rows in set (0.00 sec)

mysql> insert into test (str) values ("demo");
Query OK, 1 row affected (0.00 sec)

mysql> select * from test;
+------+---------------------+
| str  | ts                  |
+------+---------------------+
| demo | 2008-10-03 22:59:52 | 
+------+---------------------+
1 row in set (0.00 sec)

mysql>
link|flag
thanks for that example. – Brian Boatright Oct 3 '08 at 21:46
2  
TIMESTAMP changes when you update the row. Different behavior than DATETIME -- you can't just substitute one for the other. – Preston Jan 26 at 16:57
3  
Preston, that is completely incorrect. It only changes the row if you set ON UPDATE CURRENT_TIMESTAMP. Otherwise, DEFAULT CURRENT_TIMESTAMP just sets it at row create time. I don't know who voted you up but they're wrong too. timestamp is internally an epoch time, so it can't be lower than the lowest epoch value (23:59, 31 Dec 1969, or whatever it is). datetime can take any date as it's not implemented as epoch. – Artem Russakovskii Jun 24 at 2:01
One thing to note is that you can only have one timestamp with a "CURRENT_TIMESTAMP" in it. So you can't do things like have both an updated and created column in the table... – markwatson Jul 22 at 16:22
@Artem, you are mistaken. The first (by default) "TIMESTAMP" column in a table is always updated with the current time when the row is updated. MySQL represents this behavior with the ON UPDATE CURRENT_TIMESTAMP gibberish. You can not add ON UPDATE CURRENT_TIMESTAMP to any columns OTHER than the one single TIMESTAMP in the table. Additionally, TIMESTAMP is not an epoch time. TIMESTAMP is a MySQL DATETIME that can have special behavior attached to it. Xref docs: dev.mysql.com/doc/refman/… – Charles Oct 12 at 5:20
vote up 0 vote down

Are you looking for "now()"?

Here's the link for all of MySQL's date functions: http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

link|flag
that does not work. no offense but answers should at least be accurate if not tested. – Brian Boatright Oct 3 '08 at 20:35
1  
Was going to up arrow the question till i saw the attitude myself. Good/right answers float up to the top, bad ones don't. No need to give attitude when asking for help. – zxcv Oct 3 '08 at 22:11
vote up 0 vote down

NOW()

MySQL :: MySQL 5.0 Reference Manual :: 11.6 Date and Time Functions

link|flag
that does not work. no offense but answers should at least be accurate if not tested. – Brian Boatright Oct 3 '08 at 20:35
vote up 0 vote down

You can use now() to set the value of a datetime column, but keep in mind that you can't use that as a default value.

link|flag
true. I just tried using now and got an error "Error Code: 1067. Invalid default value.". so what's the answer? ;-) – Brian Boatright Oct 3 '08 at 20:31
vote up 1 vote down

If you are trying to set default value as NOW(), I don't think MySQL supports that. In MySQL, you cannot use a function or an expression as the default value for any type of column, except for the TIMESTAMP data type column, for which you can specify the CURRENT_TIMESTAMP as the default.

link|flag
vote up 4 vote down

this is indeed terrible news.here is a long pending bug/feature request for this. that discussion also talks about the limitations of timestamp data type.

I am seriously wondering what is the issue with getting this thing implemented.

link|flag
vote up 0 vote down

alter table add DateTime default getdate()

link|flag
1  
That doesn't put in the time. – markwatson Jul 22 at 16:22
vote up 1 vote down

MySQL does not allow functions to be used for default DateTime values. TIMESTAMP is not suitable due to it's odd behavior and is not recommended for use as input data. (http://dev.mysql.com/doc/refman/5.0/en/data-type-defaults.html)

That said, you can accomplish this by creating a "Trigger" (samepath/trigger-syntax.html).

I have a table with a DateCreated field of type DateTime. I created a trigger on that table "Before Insert" and "SET NEW.DateCreated=NOW()" and it works great.

I hope this helps somebody.

link|flag
vote up 0 vote down

I was able to solve this using this alter statement on my table that had two datetime fields. alter TABLE test_table change column created_dt created_dt timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ,change column updated_dt updated_dt timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;

This works as you would expect the now() function to work. Inserting nulls or ignoring the created_dt and updated_dt fields results in a perfect timestamp value in both fields. Any update to the row changes the updated_dt. If you insert records via the MySQL query browser you needed one more step, a trigger to handle the created_dt with a new timestamp.

CREATE TRIGGER trig_test_table_insert BEFORE INSERT ON test_table FOR EACH ROW SET NEW.created_dt = NOW();

The trigger can be whatever you want I just like the naming convention [trig]_[my_table_name]_[insert]

link|flag
I meant to say, If you insert records via the MySQL query browser manually via the grid without an insert() statement the trigger is needed. If you always use an insert statement the trigger is completely unnecessary. – David Byrd Oct 12 at 5:07
Whoops! I meant The trigger (name) can be whatever you want it to be because the trigger name doesn't affect the functionality at all. Most people will know that, but some folks new to MySQL might not know... – David Byrd Oct 12 at 5:18
Here's what it looks like in a create table statement. create table test ( created_dt timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', updated_dt timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, col3 varchar(255) DEFAULT NULL ); INSERT INTO test VALUES (NULL,NULL,'test text1'); INSERT INTO test VALUES (NULL,NULL,'test text2'); UPDATE test SET col3='New value' where col3 = 'test text1'; SELECT * FROM test; – David Byrd Oct 12 at 5:25
Yikes, sorry about the lack of line breaks. Use the semi-colons to mark the end of each line. – David Byrd Oct 12 at 5:27

Your Answer

Get an OpenID
or

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