question_id
int64 0
1.53k
| db_id
stringclasses 11
values | question
stringlengths 23
477
| evidence
stringlengths 0
482
| SQL
stringlengths 29
3.69k
| difficulty
stringclasses 3
values |
|---|---|---|---|---|---|
1,000
|
formula_1
|
Which racetrack hosted the most recent race? Indicate the full location.
|
Full location includes both city/location and country; the most recent race is the one with the latest date.
|
SELECT (c.location || ', ' || c.country) AS full_location
FROM circuits AS c
INNER JOIN races AS r ON c.circuitId = r.circuitId
ORDER BY r.date DESC, r.raceId DESC
LIMIT 1;
|
simple
|
1,001
|
formula_1
|
What is full name of the racer who ranked 1st in the 3rd qualifying race held in the Marina Bay Street Circuit in 2008?
|
Ranked 1st in the 3rd qualifying race refer to MIN(q3); 2008 is the year of race; full name of racer = forename, surname
|
SELECT T2.forename, T2.surname FROM qualifying AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId INNER JOIN races AS T3 ON T1.raceid = T3.raceid WHERE q3 IS NOT NULL AND T3.year = 2008 AND T3.circuitId IN ( SELECT circuitId FROM circuits WHERE name = 'Marina Bay Street Circuit' ) ORDER BY CAST(SUBSTR(q3, 1, INSTR(q3, ':') - 1) AS INTEGER) * 60 + CAST(SUBSTR(q3, INSTR(q3, ':') + 1, INSTR(q3, '.') - INSTR(q3, ':') - 1) AS REAL) + CAST(SUBSTR(q3, INSTR(q3, '.') + 1) AS REAL) / 1000 ASC LIMIT 1
|
challenging
|
1,002
|
formula_1
|
As of the present, what is the full name of the youngest racer? Indicate her nationality and the name of the race to which he/she first joined.
|
full name refers to forename+surname; Youngest racer = MAX(dob)
|
SELECT T1.forename, T1.surname, T1.nationality, T3.name FROM drivers AS T1 INNER JOIN driverStandings AS T2 on T1.driverId = T2.driverId INNER JOIN races AS T3 on T2.raceId = T3.raceId ORDER BY JULIANDAY(T1.dob) DESC LIMIT 1
|
moderate
|
1,003
|
formula_1
|
How many accidents did the driver who had the highest number accidents in the Canadian Grand Prix have?
|
number of accidents refers to the number where statusid = 3; Canadian Grand Prix refers to the race of name
|
SELECT COUNT(T1.driverId) FROM results AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId INNER JOIN status AS T3 on T1.statusId = T3.statusId WHERE T3.statusId = 3 AND T2.name = 'Canadian Grand Prix' GROUP BY T1.driverId ORDER BY COUNT(T1.driverId) DESC LIMIT 1
|
moderate
|
1,004
|
formula_1
|
How many wins was achieved by the oldest racer? Indicate his/her full name.
|
oldest racer refers to MIN(dob); full name refers to forename, surname.
|
SELECT SUM(T1.wins),T2.forename, T2.surname FROM driverStandings AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId ORDER BY T2.dob ASC LIMIT 1
|
simple
|
1,005
|
formula_1
|
What was the longest time a driver had ever spent at a pit stop?
|
longest time spent at pitstop refers to MAX(duration)
|
SELECT duration FROM pitStops ORDER BY duration DESC LIMIT 1
|
simple
|
1,006
|
formula_1
|
Among all the lap records set on various circuits, what is the time for the fastest one?
|
SELECT lt.time AS fastest_lap_time
FROM lapTimes lt
JOIN races r ON lt.raceId = r.raceId
JOIN circuits c ON r.circuitId = c.circuitId
ORDER BY lt.milliseconds ASC,
lt.raceId ASC,
lt.driverId ASC,
lt.lap ASC
LIMIT 1
|
challenging
|
|
1,007
|
formula_1
|
What was the longest time that Lewis Hamilton had spent at a pit stop?
|
longest time refes to MAX(duration);
|
SELECT T1.duration FROM pitStops AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton' ORDER BY T1.duration DESC LIMIT 1
|
simple
|
1,008
|
formula_1
|
During which lap did Lewis Hamilton take a pit stop during the 2011 Australian Grand Prix?
|
SELECT T1.lap FROM pitStops AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId INNER JOIN races AS T3 on T1.raceId = T3.raceId WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton' AND T3.year = 2011 AND T3.name = 'Australian Grand Prix'
|
simple
|
|
1,009
|
formula_1
|
Please list the time each driver spent at the pit stop during the 2011 Australian Grand Prix.
|
time spent at pit stop refers to duration
|
SELECT T3.forename,T3.surname,T1.Duration FROM pitStops AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId INNER JOIN drivers as T3 on T1.driverId=T3.driverId WHERE T2.year = 2011 AND T2.name = 'Australian Grand Prix'
|
simple
|
1,010
|
formula_1
|
What is the lap record set by Lewis Hamilton in a Formula_1 race?
|
Lap record means the fastest time recorded.
|
SELECT T1.time
FROM lapTimes AS T1
INNER JOIN drivers AS T2 ON T1.driverId = T2.driverId
WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton'
ORDER BY T1.milliseconds ASC
LIMIT 1;
|
simple
|
1,011
|
formula_1
|
Which top 20 driver created the shortest lap time ever record in a Formula_1 race? Please give them full names.
|
shortest lap time refers to MIN(time); the time format for the shortest lap time is 'MM:SS.mmm' or 'M:SS.mmm'; full name of the driver refers to forename, surname
|
WITH lap_times_in_seconds AS (SELECT driverId, (CASE WHEN SUBSTR(time, 1, INSTR(time, ':') - 1) <> '' THEN CAST(SUBSTR(time, 1, INSTR(time, ':') - 1) AS REAL) * 60 ELSE 0 END + CASE WHEN SUBSTR(time, INSTR(time, ':') + 1, INSTR(time, '.') - INSTR(time, ':') - 1) <> '' THEN CAST(SUBSTR(time, INSTR(time, ':') + 1, INSTR(time, '.') - INSTR(time, ':') - 1) AS REAL) ELSE 0 END + CASE WHEN SUBSTR(time, INSTR(time, '.') + 1) <> '' THEN CAST(SUBSTR(time, INSTR(time, '.') + 1) AS REAL) / 1000 ELSE 0 END) AS time_in_seconds FROM lapTimes) SELECT T2.forename, T2.surname, T1.driverId FROM (SELECT driverId, MIN(time_in_seconds) AS min_time_in_seconds FROM lap_times_in_seconds GROUP BY driverId) AS T1 INNER JOIN drivers AS T2 ON T1.driverId = T2.driverId ORDER BY T1.min_time_in_seconds ASC LIMIT 20
|
challenging
|
1,012
|
formula_1
|
What was the position of the circuits during Lewis Hamilton's fastest lap in a Formula_1 race?
|
fastest lap refers to MIN(time)
|
SELECT T1.position
FROM lapTimes AS T1
INNER JOIN drivers AS T2 ON T1.driverId = T2.driverId
WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton'
ORDER BY T1.time ASC
LIMIT 1;
|
simple
|
1,013
|
formula_1
|
What is the lap record for the Austrian Grand Prix Circuit?
|
lap record means the fastest time recorded which refers to time
|
WITH fastest_lap_times AS ( SELECT T1.raceId, T1.fastestLapTime FROM results AS T1 WHERE T1.FastestLapTime IS NOT NULL) SELECT MIN(fastest_lap_times.fastestLapTime) as lap_record FROM fastest_lap_times INNER JOIN races AS T2 on fastest_lap_times.raceId = T2.raceId INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId WHERE T2.name = 'Austrian Grand Prix'
|
simple
|
1,014
|
formula_1
|
Please list the lap records for the circuits in Italy.
|
A circuit’s lap record is the fastest lap time recorded at that circuit.
|
WITH per AS (
SELECT c.name AS circuit_name,
res.fastestLapTime,
(CAST(SUBSTR(res.fastestLapTime, 1, INSTR(res.fastestLapTime, ':') - 1) AS REAL) * 60)
+ CAST(SUBSTR(res.fastestLapTime, INSTR(res.fastestLapTime, ':') + 1,
INSTR(res.fastestLapTime, '.') - INSTR(res.fastestLapTime, ':') - 1) AS REAL)
+ CAST(SUBSTR(res.fastestLapTime, INSTR(res.fastestLapTime, '.') + 1) AS REAL) / 1000.0 AS secs
FROM results AS res
JOIN races AS r ON res.raceId = r.raceId
JOIN circuits AS c ON r.circuitId = c.circuitId
WHERE c.country = 'Italy' AND res.fastestLapTime IS NOT NULL
), min_per AS (
SELECT circuit_name, MIN(secs) AS min_secs
FROM per
GROUP BY circuit_name
)
SELECT p.circuit_name, p.fastestLapTime AS lap_record
FROM per AS p
JOIN min_per AS m
ON p.circuit_name = m.circuit_name AND p.secs = m.min_secs
ORDER BY p.circuit_name ASC;
|
challenging
|
1,015
|
formula_1
|
In which Formula_1 race was the lap record for the Austrian Grand Prix Circuit set?
|
lap record means the fastest time recorded which refers to time
|
WITH fastest_lap_times AS ( SELECT T1.raceId, T1.FastestLapTime, (CAST(SUBSTR(T1.FastestLapTime, 1, INSTR(T1.FastestLapTime, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, ':') + 1, INSTR(T1.FastestLapTime, '.') - INSTR(T1.FastestLapTime, ':') - 1) AS REAL)) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, '.') + 1) AS REAL) / 1000) as time_in_seconds FROM results AS T1 WHERE T1.FastestLapTime IS NOT NULL ) SELECT T2.name FROM races AS T2 INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId INNER JOIN results AS T1 on T2.raceId = T1.raceId INNER JOIN ( SELECT MIN(fastest_lap_times.time_in_seconds) as min_time_in_seconds FROM fastest_lap_times INNER JOIN races AS T2 on fastest_lap_times.raceId = T2.raceId INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId WHERE T2.name = 'Austrian Grand Prix') AS T4 ON (CAST(SUBSTR(T1.FastestLapTime, 1, INSTR(T1.FastestLapTime, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, ':') + 1, INSTR(T1.FastestLapTime, '.') - INSTR(T1.FastestLapTime, ':') - 1) AS REAL)) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, '.') + 1) AS REAL) / 1000) = T4.min_time_in_seconds WHERE T2.name = 'Austrian Grand Prix'
|
moderate
|
1,016
|
formula_1
|
In the race a driver set the lap record for the Austrian Grand Prix Circuit, how long did he spent at the pit stop at that same race?
|
lap record means the fastest time recorded which refers to time, how long spent at pitstop refers to duration
|
WITH fastest_lap_times AS ( SELECT T1.raceId, T1.driverId, T1.FastestLapTime, (CAST(SUBSTR(T1.FastestLapTime, 1, INSTR(T1.FastestLapTime, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, ':') + 1, INSTR(T1.FastestLapTime, '.') - INSTR(T1.FastestLapTime, ':') - 1) AS REAL)) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, '.') + 1) AS REAL) / 1000) as time_in_seconds FROM results AS T1 WHERE T1.FastestLapTime IS NOT NULL), lap_record_race AS ( SELECT T1.raceId, T1.driverId FROM results AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId INNER JOIN ( SELECT MIN(fastest_lap_times.time_in_seconds) as min_time_in_seconds FROM fastest_lap_times INNER JOIN races AS T2 on fastest_lap_times.raceId = T2.raceId INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId WHERE T2.name = 'Austrian Grand Prix') AS T4 ON (CAST(SUBSTR(T1.FastestLapTime, 1, INSTR(T1.FastestLapTime, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, ':') + 1, INSTR(T1.FastestLapTime, '.') - INSTR(T1.FastestLapTime, ':') - 1) AS REAL)) + (CAST(SUBSTR(T1.FastestLapTime, INSTR(T1.FastestLapTime, '.') + 1) AS REAL) / 1000) = T4.min_time_in_seconds WHERE T2.name = 'Austrian Grand Prix') SELECT T4.duration FROM lap_record_race INNER JOIN pitStops AS T4 on lap_record_race.raceId = T4.raceId AND lap_record_race.driverId = T4.driverId
|
challenging
|
1,017
|
formula_1
|
Please list the location coordinates of the circuits whose lap record is 1:29.488.
|
lap records means the fastest time recorded which refers to time; coordinates are expressed as latitude and longitude which refers to (lat, lng)
|
SELECT T3.lat, T3.lng FROM lapTimes AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId INNER JOIN circuits AS T3 on T2.circuitId = T3.circuitId WHERE T1.time = '1:29.488'
|
moderate
|
1,018
|
formula_1
|
What was the average time in milliseconds Lewis Hamilton spent at a pit stop during Formula_1 races?
|
average time in milliseconds spent at pit stop refers to AVG(milliseconds)
|
SELECT AVG(milliseconds) FROM pitStops AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton'
|
simple
|
1,019
|
formula_1
|
What is the average lap time in milliseconds of all the lap records set on the various circuits in Italy?
|
average = AVG(milliseconds); lap records refer to all lap times in the lapTimes table; circuits in Italy are identified by country = 'Italy' in the circuits table.
|
SELECT AVG(T1.milliseconds)
FROM lapTimes AS T1
INNER JOIN races AS T2 ON T1.raceId = T2.raceId
INNER JOIN circuits AS T3 ON T2.circuitId = T3.circuitId
WHERE T3.country = 'Italy'
|
moderate
|
1,020
|
european_football_2
|
Which player has the highest overall rating? Indicate the player's api id.
|
highest overall rating refers to MAX(overall_rating);
|
SELECT player_api_id FROM Player_Attributes ORDER BY overall_rating DESC LIMIT 1
|
simple
|
1,021
|
european_football_2
|
What is the height of the tallest player? Indicate his name.
|
tallest player refers to MAX(height); height is measured in centimeters
|
SELECT player_name, height FROM Player ORDER BY height DESC LIMIT 1
|
simple
|
1,022
|
european_football_2
|
What is the preferred foot when attacking of the player with the lowest potential?
|
preferred foot when attacking refers to preferred_foot; lowest potential refers to MIN(potential);
|
SELECT preferred_foot FROM Player_Attributes WHERE potential IS NOT NULL ORDER BY potential ASC LIMIT 1
|
simple
|
1,023
|
european_football_2
|
Among players with an overall rating between 60 to 65, how many players will be in all your attacking moves, instead of defending?
|
overall_rating >= 60 AND overall_rating <= 65; players who will be in all your attacking moves instead of defending refer to defensive_work_rate = 'low';
|
SELECT COUNT(id) FROM Player_Attributes WHERE overall_rating BETWEEN 60 AND 65 AND defensive_work_rate = 'low'
|
moderate
|
1,024
|
european_football_2
|
Who are the top 5 players by maximum crossing rating? Indicate their player id.
|
A higher crossing value indicates better crossing performance.
|
SELECT player_api_id
FROM Player_Attributes
GROUP BY player_api_id
ORDER BY MAX(crossing) DESC, player_api_id ASC
LIMIT 5;
|
simple
|
1,025
|
european_football_2
|
Give the name of the league that had the most goals in the 2016 season?
|
league that had the most goals refers to MAX(SUM(home_team_goal, away_team_goal)); 2016 season refers to season = '2015/2016';
|
SELECT t2.name FROM Match AS t1 INNER JOIN League AS t2 ON t1.league_id = t2.id WHERE t1.season = '2015/2016' GROUP BY t2.name ORDER BY SUM(t1.home_team_goal + t1.away_team_goal) DESC LIMIT 1
|
moderate
|
1,026
|
european_football_2
|
Which home team had lost the fewest matches in the 2016 season?
|
A home team loses a match when it scores fewer goals than the away team; the 2016 season is represented as '2015/2016' in the data;
|
SELECT teamDetails.team_long_name FROM Match AS matchData INNER JOIN Team AS teamDetails ON matchData.home_team_api_id = teamDetails.team_api_id WHERE matchData.season = '2015/2016' AND matchData.home_team_goal - matchData.away_team_goal < 0 GROUP BY matchData.home_team_api_id ORDER BY COUNT(*) ASC, teamDetails.team_api_id ASC LIMIT 1
|
moderate
|
1,027
|
european_football_2
|
Indicate the full names of the top 10 players with the highest penalties rating.
|
Interpret 'highest number of penalties' as the highest penalty attribute value per player across records.
|
SELECT t2.player_name
FROM Player_Attributes AS t1
JOIN Player AS t2 ON t1.player_api_id = t2.player_api_id
GROUP BY t2.player_api_id, t2.player_name
ORDER BY MAX(t1.penalties) DESC, t2.player_api_id ASC
LIMIT 10;
|
simple
|
1,028
|
european_football_2
|
In Scotland Premier League, which away team won the most during the 2010 season?
|
Scotland Premier League refers to League.name = 'Scotland Premier League'; away team won refers to away_team_goal > home_team_goal; 2010 season refers to season = '2009/2010'
|
SELECT t.team_long_name FROM League l JOIN `Match` m ON l.id = m.league_id JOIN Team t ON m.away_team_api_id = t.team_api_id WHERE l.name = 'Scotland Premier League' AND m.season = '2009/2010' AND m.away_team_goal > m.home_team_goal GROUP BY m.away_team_api_id, t.team_long_name ORDER BY COUNT(*) DESC, t.team_api_id ASC LIMIT 1
|
challenging
|
1,029
|
european_football_2
|
What are the speeds at which attacks are put together for the top 4 teams with the highest build Up Play Speed?
|
speeds at which attacks are put together refers to buildUpPlaySpeed;highest build up play speed refers to MAX(buildUpPlaySpeed)
|
SELECT t1.buildUpPlaySpeed FROM Team_Attributes AS t1 INNER JOIN Team AS t2 ON t1.team_api_id = t2.team_api_id ORDER BY t1.buildUpPlaySpeed DESC, t1.team_api_id ASC LIMIT 4
|
moderate
|
1,030
|
european_football_2
|
Give the name of the league had the most matches end as draw in the 2016 season?
|
most matches end as draw refers to having most matches that goals of home team = goals of away team; 2016 season refers to season called '2015/2016';
|
SELECT t2.name FROM Match AS t1 INNER JOIN League AS t2 ON t1.league_id = t2.id WHERE t1.season = '2015/2016' AND t1.home_team_goal = t1.away_team_goal GROUP BY t2.name ORDER BY COUNT(t1.id) DESC LIMIT 1
|
moderate
|
1,031
|
european_football_2
|
Calculate the current age of players who have a sprint speed of at least 97 between 2013 and 2015.
|
Current age is calculated as today's date minus the player's birthday. Sprint speed of no less than 97 refers to sprint_speed >= 97. Between 2013 and 2015 refers to the year of the date field being >= 2013 AND <= 2015.
|
SELECT DISTINCT DATETIME() - T2.birthday age FROM Player_Attributes AS t1 INNER JOIN Player AS t2 ON t1.player_api_id = t2.player_api_id WHERE STRFTIME('%Y',t1.`date`) >= '2013' AND STRFTIME('%Y',t1.`date`) <= '2015' AND t1.sprint_speed >= 97
|
challenging
|
1,032
|
european_football_2
|
Give the name of the league with the highest matches of all time and how many matches were played in the said league.
|
league with highest matches of all time refers to MAX(COUNT(league_id));
|
SELECT t2.name, t1.max_count FROM League AS t2 JOIN (SELECT league_id, MAX(cnt) AS max_count FROM (SELECT league_id, COUNT(id) AS cnt FROM Match GROUP BY league_id) AS subquery) AS t1 ON t1.league_id = t2.id
|
moderate
|
1,033
|
european_football_2
|
What is the average height of players born between 1990 and 1995?
|
average height = DIVIDE(SUM(height), COUNT(id)); players born between 1990 and 1995 refers to birthday > = '1990-01-01 00:00:00' AND birthday < '1996-01-01 00:00:00';
|
SELECT SUM(height) / COUNT(id) FROM Player WHERE SUBSTR(birthday, 1, 4) BETWEEN '1990' AND '1995'
|
simple
|
1,034
|
european_football_2
|
List the players' api id who had the highest above average overall ratings in 2010.
|
highest above average overall ratings refers to MAX(overall_rating); in 2010 refers to substr(date,1,4) = '2010';
|
SELECT player_api_id FROM Player_Attributes WHERE SUBSTR(`date`, 1, 4) = '2010' ORDER BY overall_rating DESC LIMIT 1
|
simple
|
1,035
|
european_football_2
|
Give the team_fifa_api_id of teams with more than 50 but less than 60 build-up play speed.
|
teams with more than 50 but less than 60 build-up play speed refers to buildUpPlaySpeed >50 AND buildUpPlaySpeed <60;
|
SELECT DISTINCT team_fifa_api_id FROM Team_Attributes WHERE buildUpPlaySpeed > 50 AND buildUpPlaySpeed < 60
|
simple
|
1,036
|
european_football_2
|
List the long name of teams with above-average build-up play passing in 2012.
|
above-average build-up play passing means the build-up play passing of the team is higher than the average level;
|
SELECT DISTINCT t4.team_long_name FROM Team_Attributes AS t3 INNER JOIN Team AS t4 ON t3.team_api_id = t4.team_api_id WHERE SUBSTR(t3.`date`, 1, 4) = '2012' AND t3.buildUpPlayPassing > ( SELECT AVG(t2.buildUpPlayPassing) FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE STRFTIME('%Y',t2.`date`) = '2012')
|
challenging
|
1,037
|
european_football_2
|
Calculate the percentage of players who prefer left foot, who were born between 1987 and 1992.
|
players who prefer left foot refers to preferred_foot = 'left'; percentage of players who prefer left foot = DIVIDE(MULTIPLY((SUM(preferred_foot = 'left'), 100)), COUNT(player_fifa_api_id)); born between 1987 and 1992 refers to YEAR(birthday) BETWEEN '1987' AND '1992';
|
SELECT
CAST(COUNT(DISTINCT CASE WHEN t2.preferred_foot = 'left' THEN t1.player_api_id ELSE NULL END) AS REAL) * 100
/ COUNT(DISTINCT t1.player_api_id) AS percent
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
WHERE SUBSTR(t1.birthday, 1, 4) BETWEEN '1987' AND '1992'
|
challenging
|
1,038
|
european_football_2
|
List the top 5 leagues in ascending order of the number of goals made in all seasons combined.
|
number of goals made in all seasons combine = SUM(home_team_goal, away_team_goal);
|
SELECT t1.name, SUM(t2.home_team_goal) + SUM(t2.away_team_goal) FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id GROUP BY t1.name ORDER BY SUM(t2.home_team_goal) + SUM(t2.away_team_goal) ASC LIMIT 5
|
moderate
|
1,039
|
european_football_2
|
Find the average number of long-shot done by Ahmed Samir Farag.
|
average number of long shot = DIVIDE(SUM(long_shots), COUNT(player_fifa_api_id));
|
SELECT CAST(SUM(t2.long_shots) AS REAL) / COUNT(t2.long_shots) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Ahmed Samir Farag'
|
simple
|
1,040
|
european_football_2
|
List the top 10 players' names whose heights are above 180 in descending order of average heading accuracy.
|
heights are above 180 refers to Player.height > 180; average heading accuracy = DIVIDE(SUM(heading_accuracy), COUNT(player_fifa_api_id));
|
SELECT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.height > 180 GROUP BY t1.id ORDER BY CAST(SUM(t2.heading_accuracy) AS REAL) / COUNT(t2.`player_fifa_api_id`) DESC LIMIT 10
|
moderate
|
1,041
|
european_football_2
|
For the teams with normal build-up play dribbling class in 2014, List the names of the teams with less than average chance creation passing, in descending order of chance creation passing.
|
normal build-up play dribbling class refers to buildUpPlayDribblingClass = 'Normal'; in 2014 refers to SUBSTR(date, 1, 4) = '2014'; names of the teams refers to team_long_name; less than average chance creation passing = DIVIDE(SUM(chanceCreationPassing), COUNT(id)) > chanceCreationPassing;
|
SELECT t3.team_long_name FROM Team AS t3 INNER JOIN Team_Attributes AS t4 ON t3.team_api_id = t4.team_api_id WHERE t4.buildUpPlayDribblingClass = 'Normal' AND t4.chanceCreationPassing < ( SELECT CAST(SUM(t2.chanceCreationPassing) AS REAL) / COUNT(t1.id) FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t2.buildUpPlayDribblingClass = 'Normal' AND SUBSTR(t2.`date`, 1, 4) = '2014') ORDER BY t4.chanceCreationPassing DESC
|
challenging
|
1,042
|
european_football_2
|
List the name of leagues in which the average goals by the home team is higher than the away team in the 2009/2010 season.
|
The 2009/2010 season is represented as '2009/2010' in the data; to determine if home teams score more on average, compare the average goals scored by home teams across all matches to the average goals scored by away teams across all matches in that season.
|
SELECT t1.name FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t2.season = '2009/2010' GROUP BY t1.name HAVING (CAST(SUM(t2.home_team_goal) AS REAL) / COUNT(DISTINCT t2.id)) - (CAST(SUM(t2.away_team_goal) AS REAL) / COUNT(DISTINCT t2.id)) > 0
|
challenging
|
1,043
|
european_football_2
|
What is the short name of the football team Queens Park Rangers?
|
short name of the football team refers to team_short_name; Queens Park Rangers refers to team_long_name = 'Queens Park Rangers';
|
SELECT team_short_name FROM Team WHERE team_long_name = 'Queens Park Rangers'
|
simple
|
1,044
|
european_football_2
|
List the football players with a birthyear of 1970 and a birthmonth of October.
|
SELECT player_name FROM Player WHERE SUBSTR(birthday, 1, 7) = '1970-10'
|
simple
|
|
1,045
|
european_football_2
|
What is the attacking work rate of the football playerr Franco Zennaro?
|
SELECT DISTINCT t2.attacking_work_rate FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Franco Zennaro'
|
simple
|
|
1,046
|
european_football_2
|
What is the ADO Den Haag team freedom of movement in the 1st two thirds of the pitch?
|
ADO Den Haag refers to team_long_name = 'ADO Den Haag'; freedom of movement in the 1st two thirds of the pitch refers to buildUpPlayPositioningClass;
|
SELECT DISTINCT t2.buildUpPlayPositioningClass FROM Team AS t1 INNER JOIN Team_attributes AS t2 ON t1.team_fifa_api_id = t2.team_fifa_api_id WHERE t1.team_long_name = 'ADO Den Haag'
|
moderate
|
1,047
|
european_football_2
|
What is the football player Francois Affolter header's finishing rate on 18/09/2014?
|
header's finishing rate refers to heading_accuracy; on 18/09/2014 refers to date = '2014-09-18 00:00:00';
|
SELECT t2.heading_accuracy
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
WHERE t1.player_name = 'Francois Affolter'
AND t2.`date` >= '2014-09-18 00:00:00'
AND t2.`date` < '2014-09-19 00:00:00'
|
moderate
|
1,048
|
european_football_2
|
What is the overall rating of the football player Gabriel Tamas in year 2011?
|
SELECT t2.overall_rating FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Gabriel Tamas' AND strftime('%Y', t2.date) = '2011'
|
simple
|
|
1,049
|
european_football_2
|
How many matches in the 2015/2016 season were held in Scotland Premier League?
|
Scotland Premier League refers to League.name = 'Scotland Premier League';
|
SELECT COUNT(t2.id) FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t2.season = '2015/2016' AND t1.name = 'Scotland Premier League'
|
simple
|
1,050
|
european_football_2
|
What is the preferred foot when attacking of the youngest football player?
|
preferred foot when attacking refers to preferred_foot; youngest football player refers to latest birthday;
|
SELECT t2.preferred_foot FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id ORDER BY t1.birthday DESC LIMIT 1
|
simple
|
1,051
|
european_football_2
|
List all the football player with the highest potential score.
|
potential score refers to potential; highest potential score refers to MAX(potential);
|
SELECT DISTINCT(t1.player_name) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.potential = (SELECT MAX(potential) FROM Player_Attributes)
|
simple
|
1,052
|
european_football_2
|
Among all the players whose weight is under 130, how many of them preferred foot in attacking is left?
|
weight < 130; preferred foot in attacking refers to preferred_foot; preferred_foot = 'left';
|
SELECT COUNT(DISTINCT t1.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.weight < 130 AND t2.preferred_foot = 'left'
|
moderate
|
1,053
|
european_football_2
|
List the football teams that has a chance creation passing class of Risky. Inidcate its short name only.
|
chance creation passing class refers to chanceCreationPassingClass; chanceCreationPassingClass = 'Risky'; short name refers to team_short_name;
|
SELECT DISTINCT t1.team_short_name FROM Team AS t1 INNER JOIN Team_attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t2.chanceCreationPassingClass = 'Risky'
|
moderate
|
1,054
|
european_football_2
|
What is the defensive work rate of the football player David Wilson?
|
SELECT DISTINCT t2.defensive_work_rate FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'David Wilson'
|
simple
|
|
1,055
|
european_football_2
|
When is the birthday of the football player who has the highest overall rating?
|
[Remove Evidence]
|
SELECT t1.birthday FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id ORDER BY t2.overall_rating DESC, t1.player_name LIMIT 1
|
simple
|
1,056
|
european_football_2
|
What is the name of the football league in the country of Netherlands?
|
name of the football league refers to League.name;
|
SELECT t2.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Netherlands'
|
simple
|
1,057
|
european_football_2
|
Calculate the average home team goal in the 2010/2011 season in the country of Poland.
|
average home team goal = AVG(home_team_goal)= SUM(home_team_goal) / COUNT(DISTINCT Match.id) WHERE name = 'Poland' and season = '2010/2011';
|
SELECT CAST(SUM(t2.home_team_goal) AS REAL) / COUNT(t2.id) FROM Country AS t1 INNER JOIN Match AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Poland' AND t2.season = '2010/2011'
|
moderate
|
1,058
|
european_football_2
|
Who has the highest average finishing rate between the highest and shortest football player?
|
finishing rate refers to finishing; highest average finishing rate = MAX(AVG(finishing)); highest football player refers to MAX(height); shortest football player refers to MIN(height);
|
SELECT A FROM ( SELECT AVG(finishing) result, 'Max' A FROM Player AS T1 INNER JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T1.height = ( SELECT MAX(height) FROM Player ) UNION SELECT AVG(finishing) result, 'Min' A FROM Player AS T1 INNER JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T1.height = ( SELECT MIN(height) FROM Player ) ) ORDER BY result DESC LIMIT 1
|
challenging
|
1,059
|
european_football_2
|
Please list player names which are higher than 180.
|
height>180;
|
SELECT player_name FROM Player WHERE height > 180
|
simple
|
1,060
|
european_football_2
|
How many players were born after 1990?
|
born after 1990 refers to strftime('%Y', birthday) = '1990';
|
SELECT COUNT(id) FROM Player WHERE STRFTIME('%Y', birthday) > '1990'
|
simple
|
1,061
|
european_football_2
|
How many players whose first names are Adam and weigh more than 170?
|
team names refers to team_long_name; speed class refers to buildUpPlaySpeedClass; buildUpPlaySpeedClass = 'Fast';
|
SELECT COUNT(id) FROM Player WHERE weight > 170 AND player_name LIKE 'Adam%'
|
simple
|
1,062
|
european_football_2
|
Which players had an overall rating of over 80 from 2008 to 2010? Please list player names.
|
overall_rating > 80; from 2008 to 2010 refers to strftime('%Y', date) BETWEEN '2008' AND '2010';
|
SELECT DISTINCT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.overall_rating > 80 AND SUBSTR(t2.`date`, 1, 4) BETWEEN '2008' AND '2010'
|
moderate
|
1,063
|
european_football_2
|
What is Aaron Doran's potential score?
|
potential score refers to potential;
|
SELECT t2.potential FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Aaron Doran'
|
simple
|
1,064
|
european_football_2
|
List out of players whose preferred foot is left.
|
preferred_foot = 'left';
|
SELECT DISTINCT t1.id, t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.preferred_foot = 'left'
|
simple
|
1,065
|
european_football_2
|
Please list all team names which the speed class is fast.
|
team names refers to team_long_name; speed class refers to buildUpPlaySpeedClass; buildUpPlaySpeedClass = 'Fast';
|
SELECT DISTINCT t1.team_long_name FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t2.buildUpPlaySpeedClass = 'Fast'
|
simple
|
1,066
|
european_football_2
|
What is the passing class of CLB team?
|
passing class refers to buildUpPlayPassingClass; CLB refers to team_short_name = 'CLB';
|
SELECT t2.buildUpPlayPassingClass
FROM Team AS t1
INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id
WHERE t1.team_short_name = 'CLB'
ORDER BY t2.id DESC
LIMIT 1;
|
simple
|
1,067
|
european_football_2
|
Which teams have build up play passing more than 70? Please list their short names.
|
build up play passing refers to buildUpPlayPassing; buildUpPlayPassing > 70; short names refers to team_short_name;
|
SELECT DISTINCT t1.team_short_name
FROM Team AS t1
INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id
WHERE t2.buildUpPlayPassing > 70;
|
moderate
|
1,068
|
european_football_2
|
From 2010 to 2015, what was the average overall rating of players who are higher than 170?
|
from 2010 to 2015 refers to years between 2010 and 2015 inclusive based on the date field; average overall rating refers to the mean of all overall_rating values; higher than 170 refers to height greater than 170 cm
|
SELECT CAST(SUM(t2.overall_rating) AS REAL) / COUNT(t2.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.height > 170 AND STRFTIME('%Y',t2.`date`) >= '2010' AND STRFTIME('%Y',t2.`date`) <= '2015'
|
moderate
|
1,069
|
european_football_2
|
Which football player has the shortest height?
|
shortest height refers to MIN(height);
|
SELECT player_name FROM Player WHERE height = (SELECT MIN(height) FROM Player) ORDER BY player_name ASC;
|
simple
|
1,070
|
european_football_2
|
Which country is the league Italy Serie A from?
|
Italy Serie A from refers to League.name = 'Italy Serie A';
|
SELECT t1.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t2.name = 'Italy Serie A'
|
simple
|
1,071
|
european_football_2
|
List the football team that has a build up play speed of 31, build up plan dribbling of 53, and build up play passing of 32. Only indicate the short name of the team.
|
build up play speed refers to buildUpPlaySpeed; buildUpPlaySpeed = 31; build up play dribbling refers to buildUpPlayDribbling; buildUpPlayDribbling = 53; build up play passing refers to buildUpPlayPassing; buildUpPlayPassing = 32; short name of the team refers to team_short_name;
|
SELECT DISTINCT t1.team_short_name FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t2.buildUpPlaySpeed = 31 AND t2.buildUpPlayDribbling = 53 AND t2.buildUpPlayPassing = 32
|
challenging
|
1,072
|
european_football_2
|
What is the average overall rating of the football player Aaron Doran?
|
average overall rating = AVG(overall_rating);
|
SELECT CAST(SUM(t2.overall_rating) AS REAL) / COUNT(t2.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Aaron Doran'
|
simple
|
1,073
|
european_football_2
|
How many matches were held in the league Germany 1. Bundesliga
from August to October 2008?
|
[Remove Evidence]
|
SELECT COUNT(t2.id) FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t1.name = 'Germany 1. Bundesliga' AND SUBSTR(t2.`date`, 1, 7) BETWEEN '2008-08' AND '2008-10'
|
moderate
|
1,074
|
european_football_2
|
List all the short name of the football team that had a home team goal of 10?
|
short name of the football team refers to team_short_name; home team goal refers to home_team_goal; home_team_goal = 10;
|
SELECT t1.team_short_name FROM Team AS t1 INNER JOIN Match AS t2 ON t1.team_api_id = t2.home_team_api_id WHERE t2.home_team_goal = 10
|
simple
|
1,075
|
european_football_2
|
List all the football player with the highest balance score and potential score of 61.
|
balance score refers to balance; highest balance score refers to MAX(balance); potential score refers to potential; potential = 61;
|
SELECT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.potential = '61' ORDER BY t2.balance DESC LIMIT 1
|
moderate
|
1,076
|
european_football_2
|
What is the difference of the average ball control score between Abdou Diallo and Aaron Appindangoye
?
|
difference of the average ball control = SUBTRACT(AVG(ball_control WHERE player_name = 'Abdou Diallo'), AVG(ball_control WHERE player_name = 'Aaron Appindangoye')); AVG(ball_control WHERE player_name = 'XX XX') = SUM(CASE WHEN player_name = 'XX XX' THEN ball_control ELSE 0 END) / COUNT(CASE WHEN player_name = 'XX XX' THEN id ELSE NULL END)
|
SELECT CAST(SUM(CASE WHEN t1.player_name = 'Abdou Diallo' THEN t2.ball_control ELSE 0 END) AS REAL) / COUNT(CASE WHEN t1.player_name = 'Abdou Diallo' THEN t2.id ELSE NULL END) - CAST(SUM(CASE WHEN t1.player_name = 'Aaron Appindangoye' THEN t2.ball_control ELSE 0 END) AS REAL) / COUNT(CASE WHEN t1.player_name = 'Aaron Appindangoye' THEN t2.id ELSE NULL END) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
|
challenging
|
1,077
|
european_football_2
|
What's the long name for the team GEN?
|
long name for the team refers to team_long_name; team_short_name = 'GEN';
|
SELECT team_long_name FROM Team WHERE team_short_name = 'GEN'
|
simple
|
1,078
|
european_football_2
|
Which player is older, Aaron Lennon or Abdelaziz Barrada?
|
The larger the birthday value, the younger the person is, and vice versa;
|
SELECT player_name FROM Player WHERE player_name IN ('Aaron Lennon', 'Abdelaziz Barrada') ORDER BY birthday ASC LIMIT 1
|
simple
|
1,079
|
european_football_2
|
Which player is the tallest?
|
The tallest player is the one with the greatest height.
|
SELECT player_name
FROM Player
ORDER BY height DESC, player_api_id ASC
LIMIT 1;
|
simple
|
1,080
|
european_football_2
|
Among the players whose preferred foot was the left foot when attacking, how many of them would remain in his position when the team attacked?
|
"preferred foot was the left foot when attaching" refers to preferred_foot = 'left'; players who would "remain in his position when the team attacked" refers to attacking_work_rate = 'low';
|
SELECT COUNT(DISTINCT player_api_id) FROM Player_Attributes WHERE preferred_foot = 'left' AND attacking_work_rate = 'low'
|
moderate
|
1,081
|
european_football_2
|
Which country is the Belgium Jupiler League from?
|
Belgium Jupiler League refers to League.name = 'Belgium Jupiler League';
|
SELECT t1.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t2.name = 'Belgium Jupiler League'
|
simple
|
1,082
|
european_football_2
|
Please list the leagues from Germany.
|
SELECT t2.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Germany'
|
simple
|
|
1,083
|
european_football_2
|
Which player has the strongest overall strength?
|
Overall strength is represented by the overall rating of the player. The strongest player is the one with the highest overall rating.
|
SELECT t1.player_name
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
ORDER BY t2.overall_rating DESC, t1.player_api_id ASC
LIMIT 1
|
simple
|
1,084
|
european_football_2
|
Among the players born before the year 1986, how many of them would remain in his position and defense while the team attacked?
|
players born before the year 1986 refers to strftime('%Y', birthday)<'1986'; players who would remain in his position and defense while the team attacked refers to defensive_work_rate = 'high'; Should consider DISTINCT in the final result;
|
SELECT COUNT(DISTINCT t1.player_name) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE STRFTIME('%Y',t1.birthday) < '1986' AND t2.defensive_work_rate = 'high'
|
challenging
|
1,085
|
european_football_2
|
Which of these players performs the best in crossing actions, Alexis, Ariel Borysiuk or Arouna Kone?
|
player who perform best in crossing actions refers to MAX(crossing);
|
SELECT t1.player_name, t2.crossing
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
WHERE t1.player_name IN ('Alexis', 'Ariel Borysiuk', 'Arouna Kone')
ORDER BY t2.crossing DESC
LIMIT 1;
|
moderate
|
1,086
|
european_football_2
|
What's the heading accuracy of Ariel Borysiuk?
|
SELECT t2.heading_accuracy FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Ariel Borysiuk'
|
simple
|
|
1,087
|
european_football_2
|
Among the players whose height is over 180, how many of them have a volley score of over 70?
|
A volley in football refers to a player's ability to strike the ball while it is in the air. Height is measured in centimeters.
|
SELECT COUNT(DISTINCT t1.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.height > 180 AND t2.volleys > 70
|
simple
|
1,088
|
european_football_2
|
Please list the names of the players whose volley score and dribbling score are over 70.
|
volley score are over 70 refers to volleys > 70; dribbling score refers to dribbling are over 70 refers to dribbling > 70;
|
SELECT DISTINCT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.volleys > 70 AND t2.dribbling > 70
|
moderate
|
1,089
|
european_football_2
|
How many matches in the 2008/2009 season were held in Belgium?
|
Belgium refers to Country.name = 'Belgium';
|
SELECT COUNT(t2.id) FROM Country AS t1 INNER JOIN Match AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Belgium' AND t2.season = '2008/2009'
|
simple
|
1,090
|
european_football_2
|
What is the long passing score of the oldest player?
|
long passing score refers to long_passing; oldest player refers to oldest birthday;
|
SELECT t2.long_passing FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id ORDER BY t1.birthday ASC LIMIT 1
|
simple
|
1,091
|
european_football_2
|
How many matches were held in the Belgium Jupiler League in April, 2009?
|
Belgium Jupiler League refers to League.name = 'Belgium Jupiler League'; in April, 2009 refers to SUBSTR(`date`, 1, 7);
|
SELECT COUNT(t2.id) FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t1.name = 'Belgium Jupiler League' AND SUBSTR(t2.`date`, 1, 7) = '2009-04'
|
moderate
|
1,092
|
european_football_2
|
Give the name of the league which had the most matches in the 2008/2009 season?
|
The league with the most matches is the one with the highest count of matches during that season.
|
SELECT t1.name
FROM League AS t1
JOIN `Match` AS t2 ON t1.id = t2.league_id
WHERE t2.season = '2008/2009'
GROUP BY t1.name
HAVING COUNT(t2.id) = (
SELECT MAX(match_count)
FROM (
SELECT COUNT(m.id) AS match_count
FROM `Match` AS m
WHERE m.season = '2008/2009'
GROUP BY m.league_id
) sub
);
|
simple
|
1,093
|
european_football_2
|
What is the average overall rating of the players born before the year 1986?
|
average overall rating = DIVIDE(SUM(overall_rating), COUNT(id)); born before the year 1986 refers to strftime('%Y', birthday) < '1986';
|
SELECT SUM(t2.overall_rating) / COUNT(t1.id)
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id
WHERE SUBSTR(t1.birthday, 1, 4) < '1986';
|
moderate
|
1,094
|
european_football_2
|
How much higher in percentage is Ariel Borysiuk's overall rating than that of Paulin Puel?
|
how much higher in percentage = MULTIPLY(DIVIDE(SUBTRACT(overall_rating WHERE player_name = 'Ariel Borysiuk', overall_rating WHERE player_name = 'Paulin Puel'), overall_rating WHERE player_name = 'Paulin Puel'), 100);
|
SELECT (SUM(CASE WHEN t1.player_name = 'Ariel Borysiuk' THEN t2.overall_rating ELSE 0 END) * 1.0 -
SUM(CASE WHEN t1.player_name = 'Paulin Puel' THEN t2.overall_rating ELSE 0 END)) * 100 /
SUM(CASE WHEN t1.player_name = 'Paulin Puel' THEN t2.overall_rating ELSE 0 END)
FROM Player AS t1
INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id;
|
challenging
|
1,095
|
european_football_2
|
How much is the average build up play speed of the Heart of Midlothian team?
|
Heart of Midlothian refers to team_long_name = 'Heart of Midlothian'; average build up play speed refers to AVG(buildUpPlaySpeed)
|
SELECT AVG(t2.buildUpPlaySpeed) AS average_build_up_play_speed
FROM Team AS t1
INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id
WHERE t1.team_long_name = 'Heart of Midlothian'
|
moderate
|
1,096
|
european_football_2
|
Calculate the average overall rating of Pietro Marino.
|
Pietro Marino refers to player_name = 'Pietro Marino'; average overall rating AVG(T1.overall_rating)
|
SELECT CAST(SUM(t2.overall_rating) AS REAL) / COUNT(t2.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Pietro Marino'
|
moderate
|
1,097
|
european_football_2
|
What is Aaron Lennox's total crossing score?
|
Aaron Lennox's refers to T2.player_name = 'Aaron Lennox'; total crossing score refers to SUM(crossing)
|
SELECT SUM(t2.crossing) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Aaron Lennox'
|
simple
|
1,098
|
european_football_2
|
What is Ajax's highest chance creation passing score and what is it classified as?
|
Ajax's refers to team_long_name = 'Ajax'; chance creation passing score refers to MAX(chanceCreationPassing); classified refer to chanceCreationPassingClass
|
SELECT t2.chanceCreationPassing, t2.chanceCreationPassingClass FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t1.team_long_name = 'Ajax' ORDER BY t2.chanceCreationPassing DESC LIMIT 1
|
moderate
|
1,099
|
european_football_2
|
Which foot is preferred by Abdou Diallo?
|
Abdou Diallo refers to player_name = 'Abdou Diallo'; foot is preferred refers to preferred_foot
|
SELECT DISTINCT t2.preferred_foot FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Abdou Diallo'
|
simple
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.