Reputation: 23159
i save in mysql database the time using NOW() function. how can i change the value returned of NOW() function? i want to add 6 hours.
if now() returns 2010-04-03 20:16:27, i want to save 2010-04-04 02:16:27
Upvotes: 2
Views: 73
Reputation: 449843
DATE_ADD() should do the job:
INSERT INTO ...... DATE_ADD(NOW(), INTERVAL 6 HOUR);
Upvotes: 8