get data between month and year from date in sql php code example
Example 1: mysql select month and year
SELECT DATE_FORMAT(test_date,'%Y%m') AS date FROM test_table;
Example 2: mysql filter by date mount
SELECT *
FROM customers
WHERE birthday LIKE "2015/04/%";