php - Retrieve all records of specific month in MySQL -


I am looking for SQL queries which can record specific month records for all the years of the record. That is, I have a record since 2001 ... I want to record a record of May all the years.

Check the MySQL function 'MONTH' ...

  Where is the month (some_data) = 5    

Comments