A. (select count(*) from gol g where g.idJogo=p1.idJogo) gols1, (select count(*) from gol g where g.idJogo=p2.idJogo) gols2,
B. (select count(*) from gol g where g.nomePaís=p1.nomePaís and g.idJogo=p1.idJogo) gols1, (select count(*) from gol g where g.nomePaís=p2.nomePaís and g.idJogo=p2.idJogo) gols2,
C. count(*) from gol g where g.nomePaís=p1.nomePaís and g.idJogo=p1.idJogo gols1, count(*) from gol g where g.nomePaís=p2.nomePaís and g.idJogo=p2.idJogo gols2,
D. (g.nomePaís=p1.nomePaís and g.idJogo=p1.idJogo) gols1, (g.nomePaís=p2.nomePaís and g.idJogo=p2.idJogo) gols2,
E. (select count(*) from gol g where g.nomePaís=p1.nomePaís and g.idJogo=p1.idJogo) gols1,gols2,