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.
|
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.
|
||
|
|
|
You can't do that with datetime... but you can do it with timestamp
|
||||||||||||||
|
|
|
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 |
||||||
|
|
|
|
||
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
alter table add DateTime default getdate() |
||||
|
|
|
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. |
||
|
|
|
|
I was able to solve this using this alter statement on my table that had two datetime fields.
alter TABLE 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 The trigger can be whatever you want I just like the naming convention [trig]_[my_table_name]_[insert] |
||||||||
|