realiza un select aninado que seria algo como
Código PHP:
Ver originalselect t1.nota, t2.nota, alumno, curso
from alumno a, notas n,
(select a.id, n.nota from alumno a, notas n
where a.id = n.id
and curso='603'
and alumno = '1458'
and period = 1) as t1,
(select a.id, n.nota from alumno a, notas n
where a.id = n.id
and curso='603'
and alumno = '1458'
and period = 2) as t2
where a.id = n.id
and t1.id = n.id
and t2.id = n.id
algo mas o menos asi de todas busca info sobre select aninados te podra servir.