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) |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Mysql Date Last 30 Days
Post your Comment