Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

SQL Joins exercises on soccer Database: Find the player of each team who wear jersey number 10

SQL soccer Database: Joins Exercise-56 with Solution

From the following tables, write a SQL query to find those players of each team who wore jersey number 10. Return country name, player name, position to play, age and playing club.

Sample table: player_mast


Sample table: soccer_country


Sample Solution:

SQL Code:

SELECT country_name,
       player_name,
       posi_to_play,
       age,
       playing_club
FROM player_mast a
JOIN soccer_country b ON a.team_id=b.country_id
WHERE jersey_no=10
ORDER BY country_name;

Sample Output:

    country_name     |     player_name      | posi_to_play | age |  playing_club

---------------------+----------------------+--------------+-----+-----------------
 Albania             | Armando Sadiku       | FD           |  25 | Vaduz
 Austria             | Zlatko Junuzovic     | MF           |  28 | Bremen
 Belgium             | Eden Hazard          | MF           |  25 | Chelsea
 Croatia             | Luka Modric          | MF           |  30 | Real Madrid
 Czech Republic      | TomasRosicky         | MF           |  35 | Arsenal
 England             | Wayne Rooney         | FD           |  30 | Man. United
 France              | Andre-Pierre Gignac  | FD           |  30 | Tigres
 Germany             | Lukas Podolski       | FD           |  31 | Galatasaray
 Hungary             | Zoltan Gera          | FD           |  37 | Ferencvaros
 Iceland             | Gylfi Sigurdsson     | MF           |  26 | Swansea
 Italy               | Thiago Motta         | MF           |  33 | Paris
 Northern Ireland    | Kyle Lafferty        | FD           |  28 | Birmingham
 Poland              | Grzegorz Krychowiak  | MF           |  26 | Sevilla
 Portugal            | Joao Mario           | MF           |  23 | Sporting CP
 Republic of Ireland | Robbie Keane         | FD           |  35 | LA Galaxy
 Romania             | Nicolae Stanciu      | MF           |  23 | Steaua
 Russia              | Fedor Smolov         | FD           |  26 | Krasnodar
 Slovakia            | Miroslav Stoch       | MF           |  26 | Bursaspor
 Spain               | Cesc Fabregas        | MF           |  29 | Chelsea
 Sweden              | Zlatan Ibrahimovic   | FD           |  34 | Paris
 Switzerland         | Granit Xhaka         | MF           |  23 | Monchengladbach
 Turkey              | Arda Turan           | MF           |  29 | Barcelona
 Ukraine             | Yevhen Konoplyanka   | MF           |  26 | Sevilla
 Wales               | Aaron Ramsey         | MF           |  25 | Arsenal
(24 rows)

Relational Algebra Expression:

Relational Algebra Expression: Find the player of each team who wear jersey number 10.

Relational Algebra Tree:

Relational Algebra Tree: Find the player of each team who wear jersey number 10.

Practice Online


Sample Database: soccer

soccer database relationship structure

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: From the following tables, write a SQL query to find those referees who booked most number of players. Return referee name, number of matches.
Next: From the following tables, write a SQL query to find those defenders who scored goal for their team. Return player name, jersey number, country name, age and playing club.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3