From 1249ea78961b4c53b533daa7223cddeb14b9b94d Mon Sep 17 00:00:00 2001 From: Alessandro Tinti <46496112+AleTinti@users.noreply.github.com> Date: Sat, 17 Apr 2021 09:42:10 +0200 Subject: [PATCH] =?UTF-8?q?Correct=203=C2=B0=20SQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- join.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/join.sql b/join.sql index badb308..ee7068e 100644 --- a/join.sql +++ b/join.sql @@ -30,7 +30,7 @@ SELECT * FROM game JOIN goal ON (id=matchid) Show the player, teamid and mdate and for every German goal. teamid='GER' */ -SELECT player, teamid, mdate +SELECT player, teamid, stadium, mdate FROM game JOIN goal ON (id=matchid AND teamid='GER')