Mysql Date Subtract is used to find the date between the current date and the date before the current date.
Understand with Example
The section of this Tutorial elaborate an example from 'Mysql Date Subtract'.To understand and grasp this example we use select DATE_SUB(curdate(),INTERVAL 1DAY) that return you date one day before the current date.
DATE_SUB(curdate(),INTERVAL DAY) : The Query is used to return the date before the current date. The INTERVAL is used to subtract the number of days specified in interval from the current date.
Query to subtract from date
| select DATE_SUB(curdate(), INTERVAL 1 DAY); |
Output
| +-------------------------------------+ | DATE_SUB(curdate(), INTE RVAL 1 DAY) | +-------------------------------------+ | 2009-01-01 | +-------------------------------------+ |
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 Subtract View All Comments
Post your Comment