Vous n'êtes pas identifié(e).
Pages : 1
voila ma requete sql :
SELECT etudiant.numetu, nom, prenom, libelle , coeff, notetd , notetp,noteexamen ,SUM((noteexamen*2)+notetd+notetp)/4 AS moymatiere
FROM notation, matiere, etudiant
WHERE notation.numepreuve = matiere.codemat
AND notation.numetu = etudiant.numetu
GROUP BY etudiant.numetu, nom, prenom, libelle , coeff,notetd,notetp,noteexamen
je cherche a cree une fonction en plpgsql qui fait se calcule: SUM((noteexamen*2)+notetd+notetp)/4 avec un parametre etudiant.numetu integer ou plusier paramettre ????????
je cherche comment je peut cree une fonction pour ma requette en plpgsql et voila ma requette qui marche bien :
Moyenne generale de la matiere :
SELECT etudiant.numetu, nom, prenom, libelle , coeff, notetd , notetp,noteexamen,SUM((noteexamen*2)+notetd+notetp)/4 AS moymatiere
FROM notation, matiere, etudiant
WHERE notation.numepreuve = matiere.codemat
AND notation.numetu = etudiant.numetu
GROUP BY etudiant.numetu, nom, prenom, libelle , coeff,notetd,notetp,noteexamen
Pages : 1