You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
224 B

-- psql -h londres -d dblolaborie -U lolaborie -W
SELECT p.nomR,avg(s.gscore) as Moyenne_Position_Region
FROM Statistique s, Pays p, Region r
WHERE s.codeP = p.code AND p.nomR = r.nom AND s.annee = '2021'
GROUP BY p.nomR;