Code :
SELECT e.nom_etudiant, nota.note, p.nom_prof, p.prenom_prof, avg(moy.note) moyenne FROM etudiant e, notation nota, cours c, nomination nomi, prof p, notation moy WHERE e.id_etudiant = nota.id_etudiant AND nota.id_cours = c.id_cours AND c.id_cours = nomi.id_cours AND nomi.id_prof = p.id_prof AND p.nom_prof = 'EVANS' AND p.prenom_prof = 'Bill' AND moy.id_cours = nota.id_cours GROUP BY e.nom_etudiant, nota.note, p.nom_prof, p.prenom_prof HAVING nota.note < avg(moy.note);
|