select nome from Alunos where id = (
select id_aluno from Notas where Nota = (
select MAX(Nota) from Notas)
);
select nome from Alunos where id = (
select id_aluno from Notas where Nota = (
select MAX(Nota) from Notas)
);