Mysql Date Last 30 Days

The Tutorial illustrate an example from 'Mysql Date Last 30 days'. To grasp this concept we find out the current date.

Mysql Date Last 30 Days

Mysql Date Last 30 Days

     

Mysql is used to find out the last 30 days from current date.

Understand with Example

The Tutorial illustrate an example from 'Mysql Date Last 30 days'. To grasp this concept we find out the current date. The Syntax used to find out the current date:

 curdate ( ) :The Query curdate ( ) help you to find out the current date.  

Query for finding the current date:-

mysql> select curdate()as CurrentDate;

Output:-

+-------------+
| CurrentDate |
+-------------+
| 2008-12-22  |
+-------------+
1 row in set (0.00 sec)

Query for finding the date which is 30 days before the current date:-

Now, After we get the current date, the given below Query is used to find out the 30 days and time before the current date. 

mysql> select date_sub(now(),interval 30 day)as Datebefore30days;

Output:-

+---------------------+
| Datebefore30days    |
+---------------------+
| 2008-11-22 12:36:36 |
+---------------------+
1 row in set (0.00 sec)