PostgreSQL La base de donnees la plus sophistiquee au monde.

Forums PostgreSQL.fr

Le forum officiel de la communauté francophone de PostgreSQL

Vous n'êtes pas identifié(e).

#1 24/07/2014 02:32:26

etoile88
Membre

fonction qui calcule la moyenne des note d'une matière ?????

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 ????????

Hors ligne

Pied de page des forums