Home > database >  How to query the current month of a year ago in the corresponding data
How to query the current month of a year ago in the corresponding data

Time:09-20

Have a list now is to want to do a integral expired want to deduct the data such as a year ago 2018/07/01 obtain the integral 2019/07/31 overdue should be how to check the data
The time field is the date format
Ask for help

CodePudding user response:

 
Mysql> Select adddate (' 2018/07/01 'interval - 1 year);
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +
| adddate (' 2018/07/01 'interval - 1 year) |
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +
| | 2017-07-01
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +
1 row in the set (0.00 SEC)

CodePudding user response:

 SELECT * FROM ` clir_register ` WHERE Diagnosist_Time & lt; ADDDATE (CURRENT_DATE, INTERVAL 1 Day 
  • Related