Mysql
 sql >> Database >  >> RDS >> Mysql

Query MySQL:interroga tutte le voci più vecchie di 1 anno

Puoi fare qualcosa come:

select * from `members` 
  where `paymentDate` < DATE_SUB(CURDATE(), INTERVAL 1 YEAR)
  and `AwaitingRenewal` = 'NO'