Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two columns in table users namely registerDate and lastVisitDate which consist of datetime data type. i would like to do the following.

a) Set registerDate defaults value to MySQL NOW()

b) Set lastVisitDate default value to 0000-00-00 00:00:00 Instead of null which it uses by default.

as the table already exist and it already some existing records i would like to do Modify table, i tried using two different code but none is working.

ALTER TABLE users MODIFY registerDate datetime DEFAULT NOW()
ALTER TABLE users MODIFY registerDate datetime DEFAULT CURRENT_TIMESTAMP;

It gives me Error : ERROR 1067 (42000): Invalid default value for 'registerDate'

is it possible for me to set the default datetime value to NOW() in MySQL?

thank you...

share|improve this question
ALTER TABLE users MODIFY dateTime timestamp default CURRENT_TIMESTAMP. You did not defined the data type of field in both of your efforts – Positive Apr 28 '11 at 12:20

5 Answers

up vote 20 down vote accepted

Set the datatype to timestamp.

CREATE TABLE mytable (
  mydate TIMESTAMP,
  ....)

See: http://dev.mysql.com/doc/refman/5.1/en/create-table.html

If you want to prevent MySQL from updating the timestamp value on UPDATE you can change the definition to:

CREATE TABLE mytable (
  mydate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  ....)
share|improve this answer
i really don't want to use timestamp. – Ibrahim Azhar Armar Apr 28 '11 at 12:18
@ibrahim, why not?, you state ALTER TABLE users MODIFY registerDate datetime DEFAULT CURRENT_TIMESTAMP; as an explicit example in the question. – Johan Apr 28 '11 at 12:20
1  
@Ibrahim: timestamp is your only chance. If you use a datetime field you have to insert record using now() everytime. – nick rulez Apr 28 '11 at 12:22
2  
Manual speaks clear: "This means, for example, that you cannot set the default for a date column to be the value of a function such as NOW() or CURRENT_DATE". – nick rulez Apr 28 '11 at 12:24
is it not that timestamp holds the value in seconds? again i would have to use strtotime() to convert it every time. could you please explain me the difference between the datetime and timestamp? – Ibrahim Azhar Armar Apr 29 '11 at 6:08
show 1 more comment

My solution

ALTER TABLE `table_name` MODIFY COLUMN `column_name` TIMESTAMP NOT
NULL DEFAULT CURRENT_TIMESTAMP;
share|improve this answer
10  
For anyone confused to shit by this thread, this is the correct answer. – Louis Dec 6 '12 at 22:15
This def works, I recommend everyone to use SQLYog or a tool like that, it lets you do this stuff on a easy interface. – Angelo Moreira Feb 1 at 12:03

EUREKA !!!


For all those who lost heart trying to set a default DATETIME value in MySQL, I know exactly how you feel/felt. So here is is:

`ALTER TABLE  `table_name` CHANGE `column_name` DATETIME NOT NULL DEFAULT 0

Carefully observe that I haven't added single quotes/double quotes around the 0

I'm literally jumping after solving this one :D

share|improve this answer
very helpful to me..:) – Kenny Cason Aug 4 '12 at 2:14
glad i could help! :D – UGS Aug 9 '12 at 9:08
1  
Doesn't work... – rodrigo-silveira Nov 29 '12 at 22:26
2  
Confirming, does not work. Sets datetime to 0000-00-00 00:00:00. – Louis Dec 6 '12 at 21:45
4  
It depends on expectations... - This solution allows you to have the field NOT NULL, since a default is provided. - This solution will not set the field to NOW(). – CodeReaper Dec 12 '12 at 10:36

Not sure if this is still active but here goes.

Regarding setting the defaults to Now(), I don't see that to be possible for the DATETIME data type. If you want to use that data type, set the date when you perform the insert like this:

INSERT INTO Yourtable (Field1, YourDateField) VALUES('val1', (select now()))

My version of mySQL is 5.5

share|improve this answer
Can be simplified as: INSERT INTO Yourtable (Field1, YourDateField) VALUES('val1', NOW()) – user17753 Oct 12 '12 at 16:13
You've got a generous donor :-) – ring0 Mar 3 at 13:52
`ALTER TABLE  `table_name` CHANGE `column_name` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

Can be used to update the timestamp on update.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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