How to get the first day of next month in MySQL?


With the help of following MySQL query, we can get the first day of next month −

mysql> SELECT DATE_FORMAT(CURDATE() + INTERVAL 1 MONTH,'%Y-%m-01') AS
'FIRST DAY OF NEXT MONTH';
+-------------------------+
| FIRST DAY OF NEXT MONTH |
+-------------------------+
| 2017-11-01              |
+-------------------------+
1 row in set (0.00 sec)

Updated on: 29-Jan-2020

823 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements