Post Details

How to add 1 day to the date column in MySQL
18 Feb

How to add 1 day to the date column in MySQL

Hi Guys
In this example, I will show you How to add 1 day to the date column in MySQL.

I will give you basic questions about getting added 1 day to the created_at segment utilizing MySQL capability. Let's look at an example:

SELECT id, name, created_at,DATE_ADD(created_at, INTERVAL 1 DAY) AS updated_date FROM users

Thank you it will help you...

0 Comments

Leave a Comment