How would I go about doing a query that returns results of all rows that contain dates for current year and month at the time of query.
Timestamps for each row are for
I think EXTRACT is the function you are looking for:
SELECT * FROM table WHERE EXTRACT(YEAR_MONTH FROM timestamp_field) = EXTRACT(YEAR_MONTH FROM NOW())