cursor.execute('SELECT name, distances from goals where DATE_FORMAT(date, "%Y%m") = DATE_FORMAT(CURDATE(), "%Y%m") ')
goals = [dict(name=row[0], distances=row[1]) for row in cursor.fetchall()]
monthly = []
for goal in goals:
# get month records with name
sql = 'SELECT name,DATE_FORMAT(date, "%e"),distance FROM records WHERE DATE_FORMAT(date, "%Y%m") = DATE_FORMAT(CURDATE(), "%Y%m") and name = %s order by date'
cursor.execute(sql, (goal["name"], ))
records = [dict(name=row[0], day=row[1], distance=row[3]) for row in cursor.fetchall()]