mysql query for taking data with month and year of a date field code example
Example: mysql select month and year
SELECT DATE_FORMAT(test_date,'%Y%m') AS date FROM test_table;
SELECT DATE_FORMAT(test_date,'%Y%m') AS date FROM test_table;