select month and year from created at in mysql 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/%";