2

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.

example

if now() returns 2010-04-03 20:16:27, i want to save 2010-04-04 02:16:27

1 Answer 1

8

DATE_ADD() should do the job:

INSERT INTO ...... DATE_ADD(NOW(), INTERVAL 6 HOUR);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.