Home >Database >Mysql Tutorial >How Can I Add a Day to MySQL's NOW() Function?
Adding One Day to MySQL's NOW() Function
In a MySQL query, inserting a date using the NOW() function can be useful for tracking the current time. However, there may be scenarios where you need to specify a future date. This can be achieved by adding a day to the current date returned by NOW().
To do this, you can use the NOW() INTERVAL 1 DAY expression. For example:
INSERT INTO table SET data = '$data', date = NOW() + INTERVAL 1 DAY;
This will insert a date that represents tomorrow.
If you are only interested in the date, not the date and time, you can use CURDATE() instead of NOW():
INSERT INTO table SET data = '$data', date = CURDATE() + INTERVAL 1 DAY;
This will also insert a date that represents tomorrow, but it will only include the date component, without the time.
The above is the detailed content of How Can I Add a Day to MySQL's NOW() Function?. For more information, please follow other related articles on the PHP Chinese website!