How do I extract Month and Year in a MySQL date and compare them?

前端 未结 6 2137
天涯浪人
天涯浪人 2020-12-05 22:51

How do I extract the month and date from a mySQL date and compare it to another date?

I found this MONTH() but it only gets the month. I looking for month and year.<

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-05 23:24

    SELECT * FROM Table_name Where Month(date)='10' && YEAR(date)='2016';
    

提交回复
热议问题