1.
Show the athelete (who) and the country name for medal winners in 2000
SELECT who,name
FROM ttms JOIN country ON country = id
WHERE games = 2000;
2.
Show the who and the color of the medal for the medal winners from 'Sweden’
SELECT who,color
FROM ttms JOIN country ON country = id
WHERE name = 'Sweden';
3.
Show the years in which ‘China’ won a ‘gold’ medal
SELECT games
FROM ttms JOIN country ON country = id
WHERE name = 'China' and color = 'gold';
4.
Show who won medals in the ‘Barcelona’ games
SELECT who
FROM ttws JOIN games ON games = yr
WHERE city = 'Barcelona';
5.
Show which city ‘Jing Chen’ won medals. Show the city and the medal color
SELECT city,color
FROM ttws JOIN games ON games = yr
WHERE who = 'Jing Chen';
6.
Show who won the gold medal and the city
SELECT who,city
FROM ttws JOIN games ON games = yr
WHERE color = 'gold';
7.
Show the games and color of the medal won by the team that includes 'Yan Sen’
SELECT games,color
FROM ttmd JOIN team ON team = id
WHERE name like '%Yan Sen%';
8.
Show the ‘gold’ medal winners in 2004
SELECT name
FROM ttmd JOIN team ON team = id
WHERE color = 'gold' and games = 2004;
9.
Show the name of each medal winner country 'FRA’
SELECT name
FROM ttmd JOIN team ON team = id
WHERE country = 'FRA';