I would like to insert in a datetime field the date of tomorrow + 07:00:00 to have a valid datetime value.
I’ve tried with
INSERT INTO `sometable` VALUES(CURDATE()+1)
but it just inserts me tomorrow’s date and 00:00:00 time:
2012-01-19 00:00:00
How can I insert it with the specified time?
First, add 1 day to CURDATE() and then add 7 hours to that result: