How to get last day of the previous month in MySQL?


With the help of following MySQL query, we can get the last day of previous month −

mysql> SELECT LAST_DAY(now() - INTERVAL 1 MONTH) AS 'LAST DAY OF PREVIOUS MONTH';

+----------------------------+
| LAST DAY OF PREVIOUS MONTH |
+----------------------------+
| 2017-09-30                 |
+----------------------------+
1 row in set (0.00 sec)

Updated on: 29-Jan-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements