
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
How to add a day to the date in MySQL?
To add 1 day, use date_add() function. Adding a day to datetime in MySQL gives the next day. The following is the syntax −
SELECT DATE_ADD('Any date’', INTERVAL 1 DAY) AS AliasName;
Now, I am applying the above query to add a day with date in MySQL. The query is as follows −
mysql> SELECT DATE_ADD('2018-10-08', INTERVAL 1 DAY) AS NextDay;
After executing the above query, we will get the following output −
+------------+ | NextDay | +------------+ | 2018-10-09 | +------------+ 1 row in set (0.00 sec)
Therefore, in this sample output, I am adding a day with current date
- Related Articles
- How to add 1 day to the date in MySQL?
- How add 1 day to Date in swift?
- How to add 1 day to a Date in iOS/iPhone?
- How to add a day to datetime field in MySQL query?
- How can we add day/s in the date stored in a column of MySQL table?
- MySQL add days to a date?
- How to update only day portion of MySQL Date?
- Add two weeks to a date in MySQL?
- How to display first day and last day of the month from date records in MySQL?
- How to set the day of a date in JavaScript?
- How to use date command in day to day practical usage
- How to add current date to an existing MySQL table?
- How to select rows in MySQL that are >= 1 DAY from the current date?
- Add a single day to datetime field with MySQL INTERVAL
- Add 30 days to date in a MySQL table with arrival date records

Advertisements