MYSQL: how can i select dates from this current day up to the next 2 months
i hav开发者_如何学Pythone to select from my homework dates from this time up to the next 2 months... i'm doing an expiration database.. pls help me
Read and learn !
select * from homework where homework_date between now() and now() + interval 2 month;
精彩评论