query_id
int64 0
1.53k
| database_id
stringclasses 11
values | table_id
sequencelengths 1
4
| query
stringlengths 23
286
| answer
stringlengths 29
1.45k
| difficulty
stringclasses 3
values | evidence
stringlengths 0
591
|
---|---|---|---|---|---|---|
1,000 | formula_1 | [
"races",
"circuits"
] | Which racetrack hosted the most recent race? Indicate the full location. | SELECT T1.location FROM circuits AS T1 INNER JOIN races AS T2 ON T1.circuitId = T2.circuitId ORDER BY T2.date DESC LIMIT 1 | simple | full location refers to location+country; most recent race = MAX(date)
|
1,001 | formula_1 | [
"qualifying",
"races",
"drivers",
"circuits"
] | What is full name of the racer who ranked 1st in the 3rd qualifying race held in the Marina Bay Street Circuit in 2008? | 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 | Ranked 1st in the 3rd qualifying race refer to MIN(q3); 2008 is the year of race; full name of racer = forename, surname |
1,002 | formula_1 | [
"driverStandings",
"drivers",
"races"
] | 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. | 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 | full name refers to forename+surname; Youngest racer = MAX(dob)
|
1,003 | formula_1 | [
"results",
"status",
"races"
] | How many accidents did the driver who had the highest number accidents in the Canadian Grand Prix have? | 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 | number of accidents refers to the number where statusid = 3; Canadian Grand Prix refers to the race of name
|
1,004 | formula_1 | [
"driverStandings",
"drivers"
] | How many wins was achieved by the oldest racer? Indicate his/her full name. | SELECT SUM(T1.wins) FROM driverStandings AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId GROUP BY T2.forename, T2.surname ORDER BY T2.dob ASC LIMIT 1 | simple | oldest racer refers to MIN(dob); full name refers to forename, surname. |
1,005 | formula_1 | [
"pitStops"
] | What was the longest time a driver had ever spent at a pit stop? | SELECT duration FROM pitStops ORDER BY duration DESC LIMIT 1 | simple | longest time spent at pitstop refers to MAX(duration) |
1,006 | formula_1 | [
"lapTimes"
] | Among all the lap records set on various circuits, what is the time for the fastest one? | SELECT time FROM lapTimes ORDER BY (CASE WHEN INSTR(time, ':') <> INSTR(SUBSTR(time, INSTR(time, ':') + 1), ':') + INSTR(time, ':') THEN CAST(SUBSTR(time, 1, INSTR(time, ':') - 1) AS REAL) * 3600 ELSE 0 END) + (CAST(SUBSTR(time, INSTR(time, ':') - 2 * (INSTR(time, ':') = INSTR(SUBSTR(time, INSTR(time, ':') + 1), ':') + INSTR(time, ':')), INSTR(time, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(time, INSTR(time, ':') + 1, INSTR(time, '.') - INSTR(time, ':') - 1) AS REAL)) + (CAST(SUBSTR(time, INSTR(time, '.') + 1) AS REAL) / 1000) ASC LIMIT 1 | challenging | |
1,007 | formula_1 | [
"pitStops",
"drivers"
] | What was the longest time that Lewis Hamilton had spent at a pit stop? | 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 | longest time refes to MAX(duration); |
1,008 | formula_1 | [
"pitStops",
"drivers",
"races"
] | 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 | [
"pitStops",
"races"
] | Please list the time each driver spent at the pit stop during the 2011 Australian Grand Prix. | SELECT T1.duration FROM pitStops AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId WHERE T2.year = 2011 AND T2.name = 'Australian Grand Prix' | simple | time spent at pit stop refers to duration |
1,010 | formula_1 | [
"drivers",
"lapTimes"
] | What is the lap record set by Lewis Hamilton in a Formula_1 race? | 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' | simple | lap recod means the fastest time recorded which refers to time |
1,011 | formula_1 | [
"drivers",
"lapTimes"
] | Which driver created the shortest lap time ever record in a Formula_1 race? Please give his full name. | WITH lap_times_in_seconds AS ( SELECT driverId, (CASE WHEN INSTR(time, ':') <> INSTR(SUBSTR(time, INSTR(time, ':') + 1), ':') + INSTR(time, ':') THEN CAST(SUBSTR(time, 1, INSTR(time, ':') - 1) AS REAL) * 3600 ELSE 0 END) + (CAST(SUBSTR(time, INSTR(time, ':') - 2 * (INSTR(time, ':') = INSTR(SUBSTR(time, INSTR(time, ':') + 1), ':') + INSTR(time, ':')), INSTR(time, ':') - 1) AS REAL) * 60) + (CAST(SUBSTR(time, INSTR(time, ':') + 1, INSTR(time, '.') - INSTR(time, ':') - 1) AS REAL)) + (CAST(SUBSTR(time, INSTR(time, '.') + 1) AS REAL) / 1000) as time_in_seconds FROM lapTimes) SELECT T2.forename, T2.surname 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 1 | challenging | shortest lap time refers to MIN(time) |
1,012 | formula_1 | [
"drivers",
"lapTimes"
] | What was the position of the circuits during Lewis Hamilton's fastest lap in a Formula_1 race? | 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 | fastest lap refers to MIN(time) |
1,013 | formula_1 | [
"results",
"circuits",
"races"
] | What is the lap record for the Austrian Grand Prix Circuit? | 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 | lap record means the fastest time recorded which refers to time |
1,014 | formula_1 | [
"results",
"circuits",
"races"
] | Please list the lap records for the circuits in Italy. | 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 T1.FastestLapTime as lap_record 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 T3.country = 'Italy' ) 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 LIMIT 1 | challenging | lap record means the fastest time recorded which refers to time |
1,015 | formula_1 | [
"results",
"circuits",
"races"
] | In which Formula_1 race was the lap record for the Austrian Grand Prix Circuit set? | 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 | lap record means the fastest time recorded which refers to time |
1,016 | formula_1 | [
"results",
"pitStops",
"circuits",
"races"
] | 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? | 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 | lap record means the fastest time recorded which refers to time, how long spent at pitstop refers to duration |
1,017 | formula_1 | [
"circuits",
"lapTimes",
"races"
] | Please list the location coordinates of the circuits whose lap record is 1:29.488. | 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 | lap records means the fastest time recorded which refers to time; coordinates are expressed as latitude and longitude which refers to (lat, lng) |
1,018 | formula_1 | [
"pitStops",
"drivers"
] | What was the average time in milliseconds Lewis Hamilton spent at a pit stop during Formula_1 races? | 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 | average time in milliseconds spent at pit stop refers to AVG(milliseconds) |
1,019 | formula_1 | [
"circuits",
"lapTimes",
"races"
] | What is the average lap time in milliseconds of all the lap records set on the various circuits in Italy? | SELECT CAST(SUM(T1.milliseconds) AS REAL) / COUNT(T1.lap) 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 | average = AVG(milliseconds) |
1,020 | european_football_2 | [
"Player_Attributes"
] | Which player has the highest overall rating? Indicate the player's api id. | SELECT player_api_id FROM Player_Attributes ORDER BY overall_rating DESC LIMIT 1 | simple | highest overall rating refers to MAX(overall_rating); |
1,021 | european_football_2 | [
"Player"
] | What is the height of the tallest player? Indicate his name. | SELECT player_name FROM Player ORDER BY height DESC LIMIT 1 | simple | tallest player refers to MAX(height); |
1,022 | european_football_2 | [
"Player_Attributes"
] | What is the preferred foot when attacking of the player with the lowest potential? | SELECT preferred_foot FROM Player_Attributes WHERE potential IS NOT NULL ORDER BY potential ASC LIMIT 1 | simple | preferred foot when attacking refers to preferred_foot; lowest potential refers to MIN(potential); |
1,023 | european_football_2 | [
"Player_Attributes"
] | Among the players with an overall rating between 60 to 65, how many players whose going to be in all of your attack moves instead of defensing? | SELECT COUNT(id) FROM Player_Attributes WHERE overall_rating BETWEEN 60 AND 65 AND defensive_work_rate = 'low' | moderate | overall_rating > = 60 AND overall_rating < 65; players whose going to be in all of your attack moves instead of defensing refers to defensive_work_rate = 'low'; |
1,024 | european_football_2 | [
"Player_Attributes"
] | Who are the top 5 players who perform better in crossing actions? Indicate their player id. | SELECT id FROM Player_Attributes ORDER BY crossing DESC LIMIT 5 | simple | perform better in crossing actions refers to MAX(crossing) |
1,025 | european_football_2 | [
"League",
"Match"
] | Which league had the most goals in the 2016 season? | 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 | league that had the most goals refers to MAX(SUM(home_team_goal, away_team_goal)); 2016 season refers to season = '2015/2016'; |
1,026 | european_football_2 | [
"Match",
"Team"
] | Which home team had lost the fewest matches in the 2016 season? | 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 LIMIT 1 | moderate | home team lost the matches refers to SUBTRACT(home_team_goal, away_team_goal) < 0; 2016 season refers to season = '2015/2016'; |
1,027 | european_football_2 | [
"Player_Attributes",
"Player"
] | Indicate the full names of the top 10 players with the highest number of penalties. | SELECT t2.player_name FROM Player_Attributes AS t1 INNER JOIN Player AS t2 ON t1.id = t2.id ORDER BY t1.penalties DESC LIMIT 10 | simple | full name refers to player_name; players with highest number of penalties refers to MAX(penalties); |
1,028 | european_football_2 | [
"League",
"Match",
"Team"
] | In Scotland Premier League, which away team won the most during the 2010 season? | SELECT teamInfo.team_long_name FROM League AS leagueData INNER JOIN Match AS matchData ON leagueData.id = matchData.league_id INNER JOIN Team AS teamInfo ON matchData.away_team_api_id = teamInfo.team_api_id WHERE leagueData.name = 'Scotland Premier League' AND matchData.season = '2009/2010' AND matchData.away_team_goal - matchData.home_team_goal > 0 GROUP BY matchData.away_team_api_id ORDER BY COUNT(*) DESC LIMIT 1 | challenging | Scotland Premier League refers to League.name = 'Scotland Premier League'; away team refers to away_team_api_id; away team that won the most refers to MAX(SUBTRACT(away_team_goal, home_team_goal) > 0); 2010 season refers to season = '2009/2010'; |
1,029 | european_football_2 | [
"Team_Attributes",
"Team"
] | What are the speed in which attacks are put together of the top 4 teams with the highest build Up Play Speed? | 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.buildUpPlayDribbling ASC LIMIT 4 | moderate | speed in which attacks are put together refers to buildUpPlaySpeed;highest build up play speed refers to MAX(buildUpPlaySpeed) |
1,030 | european_football_2 | [
"League",
"Match"
] | Which League had the most matches end as draw in the 2016 season? | 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 | most matches end as draw refers to MAX(SUM(home_team_goal = away_team_goal)); 2016 season refers to season = '2015/2016'; |
1,031 | european_football_2 | [
"Player_Attributes",
"Player"
] | At present, calculate for the player's age who have a sprint speed of no less than 97 between 2013 to 2015. | SELECT DATETIME() - T2.birthday age FROM Player_Attributes AS t1 INNER JOIN Player AS t2 ON t1.player_api_id = t2.player_api_id WHERE SUBSTR(t1.`date`, 1, 10) BETWEEN '2013-01-01' AND '2015-12-31' AND t1.sprint_speed >= 97 | challenging | players age at present = SUBTRACT((DATETIME(), birthday)); sprint_speed > = 97; between 2013 to 2015 refers to date > = '2013-01-01 00:00:00' AND date < = '2015-12-31 00:00:00'; |
1,032 | european_football_2 | [
"League",
"Match"
] | Give the name of the league with the highest matches of all time and how many matches were played in the said league. | SELECT t2.name, COUNT(t1.id) FROM Match AS t1 INNER JOIN League AS t2 ON t1.league_id = t2.id GROUP BY t2.name ORDER BY COUNT(t1.id) DESC LIMIT 1 | moderate | name of the league refers to League.name; league with highest matches of all time refers to MAX(COUNT(league_id)); |
1,033 | european_football_2 | [
"Player"
] | What is the average height of players born between 1990 and 1995? | SELECT SUM(height) / COUNT(id) FROM Player WHERE SUBSTR(birthday, 1, 4) BETWEEN '1990' AND '1995' | simple | 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'; |
1,034 | european_football_2 | [
"Player_Attributes"
] | List the players' api id who had the highest above average overall ratings in 2010. | SELECT player_api_id FROM Player_Attributes WHERE SUBSTR(`date`, 1, 4) = '2010' ORDER BY overall_rating DESC LIMIT 1 | simple | highest above average overall ratings refers to MAX(overall_rating); in 2010 refers to substr(date,1,4) = '2010'; |
1,035 | european_football_2 | [
"Team_Attributes"
] | Give the team_fifa_api_id of teams with more than 50 but less than 60 build-up play speed. | SELECT DISTINCT team_fifa_api_id FROM Team_Attributes WHERE buildUpPlaySpeed > 50 AND buildUpPlaySpeed < 60 | simple | teams with more than 50 but less than 60 build-up play speed refers to buildUpPlaySpeed BETWEEN 51 AND 59; |
1,036 | european_football_2 | [
"Team_Attributes",
"Team"
] | List the long name of teams with above-average build-up play passing in 2012. | 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 CAST(SUM(t2.buildUpPlayPassing) 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 SUBSTR(t2.`date`, 1, 4) = '2012' ) | challenging | long name of teams refers to team_long_name; build-up play passing refers to buildUpPlayPassing; above-average build-up play passing = DIVIDE(SUM(buildUpPlayPassing), COUNT(team_long_name) WHERE buildUpPlayPassing IS NOT NULL) < buildUpPlayPassing; in 2012 refers to strftime('%Y', date) = '2012'; |
1,037 | european_football_2 | [
"Player_Attributes",
"Player"
] | Calculate the percentage of players who prefer left foot, who were born between 1987 and 1992. | SELECT CAST(COUNT(CASE WHEN t2.preferred_foot = 'left' THEN t1.id ELSE NULL END) AS REAL) * 100 / COUNT(t1.id) 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 | players who prefer left foot refers to preferred_foot = 'left'; percentage of players who prefer left foot = DIVIDE(MULTIPLY((SUM(preferred_foot = 'left'), 1.0)), COUNT(player_fifa_api_id)); born between 1987 and 1992 refers to birthday BETWEEN '1987-01-01 00:00:00'AND '1992-12-31 00:00:00'; |
1,038 | european_football_2 | [
"League",
"Match"
] | List the top 5 leagues in ascending order of the number of goals made in all seasons combined. | 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 | number of goals made in all seasons combine = SUM(home_team_goal, away_team_goal); |
1,039 | european_football_2 | [
"Player_Attributes",
"Player"
] | Find the average number of long-shot done by Ahmed Samir Farag. | SELECT CAST(SUM(t2.long_shots) AS REAL) / COUNT(t2.`date`) 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 | average number of long shot = DIVIDE(SUM(long_shots), COUNT(player_fifa_api_id)); |
1,040 | european_football_2 | [
"Player_Attributes",
"Player"
] | List the top 10 players' names whose heights are above 180 in descending order of average heading accuracy. | 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 | height > 180; average heading accuracy = DIVIDE(SUM(heading_accuracy), COUNT(player_fifa_api_id)); |
1,041 | european_football_2 | [
"Team_Attributes",
"Team"
] | 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. | 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 | normal build-up play dribbling class refers to buildUpPlayDribblingClass = 'Normal'; in 2014 refers to date > = '2014-01-01 00:00:00' AND date < = '2014-01-31 00:00:00'; names of the teams refers to team_long_name; less than average chance creation passing = DIVIDE(SUM(chanceCreationPassing), COUNT(id)) > chanceCreationPassing; |
1,042 | european_football_2 | [
"League",
"Match"
] | 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. | 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 | name of league refers to League.name; average goals by the home team is higher than the away team = AVG(home_team_goal) > AVG(away_team_goal); |
1,043 | european_football_2 | [
"Team"
] | What is the short name of the football team Queens Park Rangers? | SELECT team_short_name FROM Team WHERE team_long_name = 'Queens Park Rangers' | simple | short name of the football team refers to team_short_name; Queens Park Rangers refers to team_long_name = 'Queens Park Rangers'; |
1,044 | european_football_2 | [
"Player"
] | 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 | players with a birthyear of 1970 and a birthmonth of October refers to substr(birthday,1,4) AS year, substr(birthday,6,2) AS month WHERE year = '1970' AND month = '10'; |
1,045 | european_football_2 | [
"Player_Attributes",
"Player"
] | 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 | [
"Team_attributes",
"Team"
] | What is the ADO Den Haag team freedom of movement in the 1st two thirds of the pitch? | 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 | 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; |
1,047 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the football player Francois Affolter header's finishing rate on 18/09/2014? | 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 SUBSTR(t2.`date`, 1, 10) = '2014-09-18' | moderate | header's finishing rate refers to heading_accuracy; on 18/09/2014 refers to date = '2014-09-18 00:00:00'; |
1,048 | european_football_2 | [
"Player_Attributes",
"Player"
] | 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 SUBSTR(t2.`date`, 1, 4) = '2011' | simple | in year 2011 refers to strftime('%Y', date) = '2011'; |
1,049 | european_football_2 | [
"League",
"Match"
] | How many matches in the 2015/2016 season were held in 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 | Scotland Premier League refers to League.name = 'Scotland Premier League'; |
1,050 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the preferred foot when attacking of the youngest football player? | 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 | preferred foot when attacking refers to preferred_foot; youngest football player refers to latest birthday; |
1,051 | european_football_2 | [
"Player_Attributes",
"Player"
] | List all the football player with the highest potential score. | 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 | potential score refers to potential; highest potential score refers to MAX(potential); |
1,052 | european_football_2 | [
"Player_Attributes",
"Player"
] | Among all the players whose weight is under 130, how many of them preferred foot in attacking is 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 | weight < 130; preferred foot in attacking refers to preferred_foot; preferred_foot = 'left'; |
1,053 | european_football_2 | [
"Team_attributes",
"Team"
] | List the football teams that has a chance creation passing class of Risky. Inidcate its short name only. | 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 | chance creation passing class refers to chanceCreationPassingClass; chanceCreationPassingClass = 'Risky'; short name refers to team_short_name; |
1,054 | european_football_2 | [
"Player_Attributes",
"Player"
] | 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 | [
"Player_Attributes",
"Player"
] | When is the birthday of the football player who has the highest overall rating? | 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 LIMIT 1 | simple | football player who has the highest overall rating refers to MAX(overall_rating); |
1,056 | european_football_2 | [
"Country",
"League"
] | What is the name of the football league in the country of Netherlands? | SELECT t2.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Netherlands' | simple | name of the football league refers to League.name; |
1,057 | european_football_2 | [
"Country",
"Match"
] | Calculate the average home team goal in the 2010/2011 season in the country of Poland. | 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 | average home team goal = AVG(home_team_goal) WHERE name = 'Poland' and season = '2010/2011'; |
1,058 | european_football_2 | [
"Player_Attributes",
"Player"
] | Who has the highest average finishing rate between the highest and shortest football player? | 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 | 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); |
1,059 | european_football_2 | [
"Player"
] | Please list player names which are higher than 180. | SELECT player_name FROM Player WHERE height > 180 | simple | height>180; |
1,060 | european_football_2 | [
"Player"
] | How many players were born after 1990? | SELECT COUNT(id) FROM Player WHERE STRFTIME('%Y', birthday) > '1990' | simple | born after 1990 refers to strftime('%Y', birthday) = '1990'; |
1,061 | european_football_2 | [
"Player"
] | How many players whose first names are Adam and weigh more than 170? | SELECT COUNT(id) FROM Player WHERE weight > 170 AND player_name LIKE 'Adam%' | simple | team names refers to team_long_name; speed class refers to buildUpPlaySpeedClass; buildUpPlaySpeedClass = 'Fast'; |
1,062 | european_football_2 | [
"Player_Attributes",
"Player"
] | Which players had an overall rating of over 80 from 2008 to 2010? Please list player names. | 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 | overall_rating > 80; from 2008 to 2010 refers to strftime('%Y', date) BETWEEN '2008' AND '2010'; |
1,063 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is Aaron Doran's potential score? | 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 | potential score refers to potential; |
1,064 | european_football_2 | [
"Player_Attributes",
"Player"
] | List out of players whose preferred foot is 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 | preferred_foot = 'left'; |
1,065 | european_football_2 | [
"Team_Attributes",
"Team"
] | Please list all team names which the speed class is 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 | team names refers to team_long_name; speed class refers to buildUpPlaySpeedClass; buildUpPlaySpeedClass = 'Fast'; |
1,066 | european_football_2 | [
"Team_Attributes",
"Team"
] | What is the passing class of CLB team? | SELECT DISTINCT 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' | simple | passing class refers to buildUpPlayPassingClass; CLB refers to team_short_name = 'CLB'; |
1,067 | european_football_2 | [
"Team_Attributes",
"Team"
] | Which teams have build up play passing more than 70? Please list their short names. | 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 | build up play passing refers to buildUpPlayPassing; buildUpPlayPassing > 70; short names refers to team_short_name; |
1,068 | european_football_2 | [
"Player_Attributes",
"Player"
] | From 2010 to 2015, what was the average overall rating of players who are higher than 170? | 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 SUBSTR(t2.`date`, 1, 4) BETWEEN '2010' AND '2015' | moderate | from 2010 to 2015 refers to strftime('%Y', date) BETWEEN '2010' AND '2015'; height > 170; |
1,069 | european_football_2 | [
"player"
] | Which football player has the shortest height? | SELECT player_name FROM player ORDER BY height ASC LIMIT 1 | simple | shortest height refers to MIN(height); |
1,070 | european_football_2 | [
"Country",
"League"
] | Which country is the league Italy Serie A from? | 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 | Italy Serie A from refers to League.name = 'Italy Serie A'; |
1,071 | european_football_2 | [
"Team_Attributes",
"Team"
] | 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. | 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 | 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; |
1,072 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the average overall rating of the football player Aaron Doran? | 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 | average overall rating = AVG(overall_rating); |
1,073 | european_football_2 | [
"League",
"Match"
] | How many matches were held in the league Germany 1. Bundesliga
from August to October 2008? | 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 | Germany 1. Bundesliga refers to League.name = 'Germany 1. Bundesliga'; from August to October 2008 refers to strftime('%Y-%m', date) BETWEEN '2008-08' AND '2008-10'; |
1,074 | european_football_2 | [
"Match",
"Team"
] | List all the short name of the football team that had a home team goal of 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 | short name of the football team refers to team_short_name; home team goal refers to home_team_goal; home_team_goal = 10; |
1,075 | european_football_2 | [
"Player_Attributes",
"Player"
] | List all the football player with the highest balance score and potential score of 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 | balance score refers to balance; highest balance score refers to MAX(balance); potential score refers to potential; potential = 61; |
1,076 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the difference of the average ball control score between Abdou Diallo and Aaron Appindangoye
? | 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 | difference of the average ball control = SUBTRACT(AVG(ball_control WHERE player_name = 'Abdou Diallo'), AVG(ball_control WHERE player_name = 'Aaron Appindangoye')); |
1,077 | european_football_2 | [
"Team"
] | What's the long name for the team GEN? | SELECT team_long_name FROM Team WHERE team_short_name = 'GEN' | simple | long name for the team refers to team_long_name; team_short_name = 'GEN'; |
1,078 | european_football_2 | [
"Player"
] | Which player is older, Aaron Lennon or Abdelaziz Barrada? | SELECT player_name FROM Player WHERE player_name IN ('Aaron Lennon', 'Abdelaziz Barrada') ORDER BY birthday ASC LIMIT 1 | simple | older player refers to older birthday; |
1,079 | european_football_2 | [
"Player"
] | Which player is the tallest? | SELECT player_name FROM Player ORDER BY height DESC LIMIT 1 | simple | tallest player refers to MAX(height); |
1,080 | european_football_2 | [
"Player_Attributes"
] | 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? | SELECT COUNT(player_api_id) FROM Player_Attributes WHERE preferred_foot = 'left' AND attacking_work_rate = 'low' | moderate | preferred foot when attacking refers to preferred foot; preferred_foot = 'left'; players who would remain in his position when the team attacked refers to attacking_work_rate = 'low'; |
1,081 | european_football_2 | [
"Country",
"League"
] | Which country is the Belgium Jupiler League from? | 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 | Belgium Jupiler League refers to League.name = 'Belgium Jupiler League'; |
1,082 | european_football_2 | [
"Country",
"League"
] | 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 | Germany refers to Country.name = 'Germany'; |
1,083 | european_football_2 | [
"Player_Attributes",
"Player"
] | Which player has the strongest overall strength? | 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 LIMIT 1 | simple | overall strength refers to overall_rating; strongest overall strength refers to MAX(overall_rating); |
1,084 | european_football_2 | [
"Player_Attributes",
"Player"
] | Among the players born before the year 1986, how many of them would remain in his position and defense while the team attacked? | 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 SUBSTR(t1.birthday, 1, 4) < '1986' AND t2.defensive_work_rate = 'high' | challenging | 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'; |
1,085 | european_football_2 | [
"Player_Attributes",
"Player"
] | Which of these players performs the best in crossing actions, Alexis, Ariel Borysiuk or Arouna Kone? | 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 | player who perform best in crossing actions refers to MAX(crossing); |
1,086 | european_football_2 | [
"Player_Attributes",
"Player"
] | 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 | [
"Player_Attributes",
"Player"
] | Among the players whose height is over 180, how many of them have a volley score of over 70? | 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 | height > 180; volley score refers to volleys; volleys > 70; |
1,088 | european_football_2 | [
"Player_Attributes",
"Player"
] | Please list the names of the players whose volley score and dribbling score are over 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 | volley score refers to volleys; volleys > 70; dribbling score refers to dribbling; dribbling > 70; |
1,089 | european_football_2 | [
"Country",
"Match"
] | How many matches in the 2008/2009 season were held in 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 | Belgium refers to Country.name = 'Belgium'; |
1,090 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the long passing score of the oldest player? | 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 | long passing score refers to long_passing; oldest player refers to oldest birthday; |
1,091 | european_football_2 | [
"League",
"Match"
] | How many matches were held in the Belgium Jupiler League in April, 2009? | 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, 4) = '2009' | moderate | Belgium Jupiler League refers to League.name = 'Belgium Jupiler League'; in April, 2009 refers to strftime('%Y', date) = '2009' AND strftime('%m', date) = '04'; |
1,092 | european_football_2 | [
"League",
"Match"
] | Which league had the most matches in the 2008/2009 season? | SELECT t1.name FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t2.season = '2008/2009' GROUP BY t1.name ORDER BY COUNT(t2.id) DESC LIMIT 1 | simple | league that had the most matches in the 2008/2009 season refers to MAX(league_id WHERE season = '2008/2009'); |
1,093 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is the average overall rating of the players born before the year 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 | average overall rating = DIVIDE(SUM(overall_rating), COUNT(id)); born before the year 1986 refers to strftime('%Y', birthday) < '1986'; |
1,094 | european_football_2 | [
"Player_Attributes",
"Player"
] | How much higher in percentage is Ariel Borysiuk's overall rating than that of Paulin Puel? | 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 | 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); |
1,095 | european_football_2 | [
"Team_Attributes",
"Team"
] | How much is the average build up play speed of the Heart of Midlothian team? | SELECT CAST(SUM(t2.buildUpPlaySpeed) AS REAL) / COUNT(t2.id) 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 | Heart of Midlothian refers to team_long_name = 'Heart of Midlothian'; average build up play speed refers to AVG(buildUpPlaySpeed) |
1,096 | european_football_2 | [
"Player_Attributes",
"Player"
] | Calculate the average overall rating of Pietro Marino. | 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 | Pietro Marino refers to player_name = 'Pietro Marino'; average overall rating AVG(T1.overall_rating) |
1,097 | european_football_2 | [
"Player_Attributes",
"Player"
] | What is Aaron Lennox's total crossing score? | 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 | Aaron Lennox's refers to T2.player_name = 'Aaron Lennox'; total crossing score refers to SUM(crossing) |
1,098 | european_football_2 | [
"Team_Attributes",
"Team"
] | What is Ajax's highest chance creation passing score and what is it classified as? | 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 | Ajax's refers to team_long_name = 'Ajax'; chance creation passing score refers to MAX(chanceCreationPassing); classified as chanceCreationPassingClass |
1,099 | european_football_2 | [
"Player_Attributes",
"Player"
] | Which foot is preferred by Abdou Diallo? | 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 | Abdou Diallo refers to player_name = 'Abdou Diallo'; foot is preferred refers to preferred_foot |
Subsets and Splits