Börja med detta:
select StudentId, max(DateApproved)
from tbl
group by StudentId
Integrera sedan det till huvudfrågan:
select *
from tbl
where (StudentId, DateApproved) in
(
select StudentId, max(DateApproved)
from tbl
group by StudentId
)
Du kan också använda detta:
select *
from tbl
join (select StudentId, max(DateApproved) as DateApproved
from tbl
group by StudentId)
using (StudentId, DateApproved)
Men jag föredrar tuppeltestning, det är så snyggare
Livetest:http://www.sqlfiddle.com/#!2/771b8/ 5