Im currently using this query in attempts to retrieve the highlighted rows
"Select max(grades_id) from grades WHERE dt_year BETWEEN 2012 AND 2013 GROUP BY student_id HAVING count(grades_id) >= 2"
however it is only yielding
is there any way to retrieve the entire row as opposed to just the grades_id?