Difference between revisions of "The JOIN operation"
| Line 47: | Line 47: | ||
WHERE stadium = 'National Stadium, Warsaw' | WHERE stadium = 'National Stadium, Warsaw' | ||
AND (team1 = 'POL' OR team1 = 'CZE') | AND (team1 = 'POL' OR team1 = 'CZE') | ||
| + | </source> | ||
| + | </div> | ||
| + | |||
| + | <div class='qu'> | ||
| + | This query shows names of coaches from Germany and England. | ||
| + | |||
| + | <p class='imper'>Show '''team name''' of the teams which have coaches who's names start with 'M'.</p> | ||
| + | |||
| + | <source lang='sql' class='def'> | ||
| + | SELECT coach from eteam | ||
| + | WHERE teamname = 'Germany' | ||
| + | OR teamname = 'England' | ||
| + | </source> | ||
| + | |||
| + | <source lang='sql' class='ans'> | ||
| + | SELECT teamname from eteam | ||
| + | WHERE coach LIKE 'M%' | ||
| + | </source> | ||
| + | </div> | ||
| + | |||
| + | <div class='qu'> | ||
| + | The following query shows coaches of teams that played on 9 June 2012. <code>JOIN</code> has been used to make relation between <code>game</code> and <code>eteam</code> tables. | ||
| + | |||
| + | <p class='imper'>Show '''stadium''' and '''mdate''' of matches played by ''Vicente del Bosque'''s team. | ||
| + | <code>teamid = 'ENG'</code></p> | ||
| + | |||
| + | <source lang='sql' class='def'> | ||
| + | SELECT coach, mdate FROM eteam JOIN game | ||
| + | ON (team1 = eteam.id OR team2 = eteam.id) | ||
| + | WHERE mdate = '9 June 2012' | ||
| + | </source> | ||
| + | |||
| + | <source lang='sql' class='ans'> | ||
| + | SELECT stadium, mdate FROM eteam JOIN game | ||
| + | ON (team1 = eteam.id OR team2 = eteam.id) | ||
| + | WHERE coach= 'Vicente del Bosque' | ||
| + | </source> | ||
| + | </div> | ||
| + | |||
| + | <div class='qu'> | ||
| + | The first example shows the goal scored by 'Wayne Rooney'. | ||
| + | |||
| + | <p class='imper'>Show '''matchid''' and '''player''' name for all goals scored by English players. | ||
| + | <code>teamid = 'ENG'</code></p> | ||
| + | |||
| + | <source lang='sql' class='def'> | ||
| + | SELECT * FROM goal | ||
| + | WHERE player LIKE '%Rooney' | ||
| + | </source> | ||
| + | |||
| + | <source lang='sql' class='ans'> | ||
| + | SELECT matchid, player | ||
| + | FROM game JOIN goal ON matchid = id | ||
| + | WHERE teamid LIKE 'ENG' | ||
</source> | </source> | ||
</div> | </div> | ||
Revision as of 14:08, 2 August 2012
JOIN and UEFA EURO 2012
This tutorial introduces JOIN which allows you to use data from two or more tables. The tables contain all matches and goals from UEFA EURO 2012 Football Championship in Poland and Ukraine.
The first example shows the goal scored by 'Wayne Rooney'.
Show matchid and player name for all goals scored by English players.
teamid = 'ENG'
SELECT * FROM goal WHERE player LIKE '%Rooney'
SELECT matchid, player FROM game JOIN goal ON matchid = id WHERE teamid LIKE 'ENG'
This example shows all the games played in Warsaw.
Show date, team1 and team2 for all matches that Polish ('POL') and Czech ('CZE') teams played in Warsaw.
SELECT mdate, team1, team2 FROM game WHERE stadium = 'National Stadium, Warsaw'
SELECT mdate, team1, team2 FROM game WHERE stadium = 'National Stadium, Warsaw' AND (team1 = 'POL' OR team1 = 'CZE')
This query shows names of coaches from Germany and England.
Show team name of the teams which have coaches who's names start with 'M'.
SELECT coach FROM eteam WHERE teamname = 'Germany' OR teamname = 'England'
SELECT teamname FROM eteam WHERE coach LIKE 'M%'
The following query shows coaches of teams that played on 9 June 2012. JOIN has been used to make relation between game and eteam tables.
Show stadium' and mdate of matches played by Vicente del Bosques team.
teamid = 'ENG'
SELECT coach, mdate FROM eteam JOIN game ON (team1 = eteam.id OR team2 = eteam.id) WHERE mdate = '9 June 2012'
SELECT stadium, mdate FROM eteam JOIN game ON (team1 = eteam.id OR team2 = eteam.id) WHERE coach= 'Vicente del Bosque'
The first example shows the goal scored by 'Wayne Rooney'.
Show matchid and player name for all goals scored by English players.
teamid = 'ENG'
SELECT * FROM goal WHERE player LIKE '%Rooney'
SELECT matchid, player FROM game JOIN goal ON matchid = id WHERE teamid LIKE 'ENG'
More difficult questions
Show names of all non-German players who scored a goal in matches against Germany.
SELECT player, gtime FROM game JOIN goal ON matchid = id WHERE (team1 = "GER" AND team2 = "GRE")
SELECT player FROM game JOIN goal ON matchid = id WHERE (team1 = "GER" OR team2 = "GER") AND teamid != "GER"
The example shows result of the final match. COUNT() has been used to count the total number of goals.
SELECT team1, team2, (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team1) AS team1, (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team2) AS team2 FROM game WHERE id = 1031
SELECT team1, team2, (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team1) AS team1, (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team2) AS team2 FROM game WHERE stadium = 'PGE Arena Gdansk'
The following query shows matches which were won by team1.
SELECT team1, team2 FROM game WHERE (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team1) > (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team2)
SELECT id FROM game WHERE (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team1) - (SELECT COUNT(*) FROM goal WHERE matchid = id AND teamid = team2) >= 2
The example shows teams that scored a goal at stadiums where Poland has played its matches.
DISTINCT to remove duplicates from your query results.SELECT DISTINCT teamid FROM game JOIN goal ON matchid = id WHERE Stadium IN (SELECT stadium FROM game WHERE team1 = 'POL' OR team2 = 'POL')
SELECT DISTINCT player FROM game JOIN goal ON matchid = id WHERE stadium = 'National Stadium, Warsaw' AND mdate NOT IN (SELECT mdate FROM game WHERE team1 = 'CZE' OR team2 = 'CZE')
The query shows the stadiums, where the teams who scored more than 8 goals played their matches.
SELECT teamid, COUNT(*) FROM goal WHERE 3 < (SELECT COUNT(DISTINCT id) FROM game WHERE team1 = teamid OR team2 = teamid) GROUP BY teamid
SELECT DISTINCT stadium FROM game WHERE team1 IN (SELECT teamid FROM goal GROUP BY teamid HAVING COUNT(*) > 8)
The next tutorial about the Movie database involves some slightly more complicated joins.