Home > Database > Mysql Tutorial > How to get the last day of the previous month in MySQL?

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

WBOY
Release: 2023-09-01 08:33:07
forward
1147 people have browsed it

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

With the help of the following MySQL query we can get the last day of the 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)
Copy after login

The above is the detailed content of How to get the last day of the previous month in MySQL?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template