query_id
int64
0
7k
database_id
stringclasses
140 values
table_id
sequencelengths
1
5
query
stringlengths
16
224
answer
stringlengths
18
577
difficulty
stringclasses
4 values
3,600
music_1
[ "files", "song" ]
What are the maximum duration and resolution of songs grouped and ordered by languages?
SELECT max(T1.duration) , max(T2.resolution) , T2.languages FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.languages ORDER BY T2.languages
hard
3,601
music_1
[ "files", "song" ]
What are the maximum duration and resolution of all songs, for each language, ordered alphabetically by language?
SELECT max(T1.duration) , max(T2.resolution) , T2.languages FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.languages ORDER BY T2.languages
hard
3,602
music_1
[ "files", "song" ]
What are the shortest duration and lowest rating of songs grouped by genre and ordered by genre?
SELECT min(T1.duration) , min(T2.rating) , T2.genre_is FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.genre_is ORDER BY T2.genre_is
hard
3,603
music_1
[ "files", "song" ]
What is the shortest and most poorly rated song for each genre, ordered alphabetically by genre?
SELECT min(T1.duration) , min(T2.rating) , T2.genre_is FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id GROUP BY T2.genre_is ORDER BY T2.genre_is
hard
3,604
music_1
[ "artist", "song" ]
Find the names and number of works of all artists who have at least one English songs.
SELECT T1.artist_name , count(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = "english" GROUP BY T2.artist_name HAVING count(*) >= 1
hard
3,605
music_1
[ "artist", "song" ]
What are the names and number of works for all artists who have sung at least one song in English?
SELECT T1.artist_name , count(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = "english" GROUP BY T2.artist_name HAVING count(*) >= 1
hard
3,606
music_1
[ "artist", "song" ]
Find the name and country of origin for all artists who have release at least one song of resolution above 900.
SELECT T1.artist_name , T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.resolution > 900 GROUP BY T2.artist_name HAVING count(*) >= 1
hard
3,607
music_1
[ "artist", "song" ]
What is the name and country of origin for each artist who has released a song with a resolution higher than 900?
SELECT T1.artist_name , T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.resolution > 900 GROUP BY T2.artist_name HAVING count(*) >= 1
hard
3,608
music_1
[ "artist", "song" ]
Find the names and number of works of the three artists who have produced the most songs.
SELECT T1.artist_name , count(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY count(*) DESC LIMIT 3
extra
3,609
music_1
[ "artist", "song" ]
What are the names of the three artists who have produced the most songs, and how many works did they produce?
SELECT T1.artist_name , count(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY count(*) DESC LIMIT 3
extra
3,610
music_1
[ "artist", "song" ]
Find the country of origin for the artist who made the least number of songs?
SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY count(*) LIMIT 1
extra
3,611
music_1
[ "artist", "song" ]
What country is the artist who made the fewest songs from?
SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY count(*) LIMIT 1
extra
3,612
music_1
[ "song" ]
What are the names of the songs whose rating is below the rating of all songs in English?
SELECT song_name FROM song WHERE rating < (SELECT min(rating) FROM song WHERE languages = 'english')
hard
3,613
music_1
[ "song" ]
What are the song names for every song whose rating is less than the minimum rating for English songs?
SELECT song_name FROM song WHERE rating < (SELECT min(rating) FROM song WHERE languages = 'english')
hard
3,614
music_1
[ "song" ]
What is ids of the songs whose resolution is higher than the resolution of any songs with rating lower than 8?
SELECT f_id FROM song WHERE resolution > (SELECT max(resolution) FROM song WHERE rating < 8)
hard
3,615
music_1
[ "song" ]
What is the id of every song that has a resolution higher than that of a song with a rating below 8?
SELECT f_id FROM song WHERE resolution > (SELECT max(resolution) FROM song WHERE rating < 8)
hard
3,616
music_1
[ "song" ]
What is ids of the songs whose resolution is higher than the average resolution of songs in modern genre?
SELECT f_id FROM song WHERE resolution > (SELECT avg(resolution) FROM song WHERE genre_is = "modern")
hard
3,617
music_1
[ "song" ]
What are the ids of all songs that have higher resolution of the average resolution in the modern genre?
SELECT f_id FROM song WHERE resolution > (SELECT avg(resolution) FROM song WHERE genre_is = "modern")
hard
3,618
music_1
[ "artist", "song" ]
Find the top 3 artists who have the largest number of songs works whose language is Bangla.
SELECT T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = "bangla" GROUP BY T2.artist_name ORDER BY count(*) DESC LIMIT 3
extra
3,619
music_1
[ "artist", "song" ]
What are the top 3 artists with the largest number of songs in the language Bangla?
SELECT T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = "bangla" GROUP BY T2.artist_name ORDER BY count(*) DESC LIMIT 3
extra
3,620
music_1
[ "song" ]
List the id, genre and artist name of English songs ordered by rating.
SELECT f_id , genre_is , artist_name FROM song WHERE languages = "english" ORDER BY rating
medium
3,621
music_1
[ "song" ]
What is the id, genre, and name of the artist for every English song ordered by ascending rating?
SELECT f_id , genre_is , artist_name FROM song WHERE languages = "english" ORDER BY rating
medium
3,622
music_1
[ "files", "song" ]
List the duration, file size and format of songs whose genre is pop, ordered by title?
SELECT T1.duration , T1.file_size , T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.genre_is = "pop" ORDER BY T2.song_name
hard
3,623
music_1
[ "files", "song" ]
What is the duration, file size, and song format for every pop song, ordered by title alphabetically?
SELECT T1.duration , T1.file_size , T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.genre_is = "pop" ORDER BY T2.song_name
hard
3,624
music_1
[ "song" ]
Find the names of the artists who have produced English songs but have never received rating higher than 8.
SELECT DISTINCT artist_name FROM song WHERE languages = "english" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 8
hard
3,625
music_1
[ "song" ]
What are the names of the different artists that have produced a song in English but have never receieved a rating higher than 8?
SELECT DISTINCT artist_name FROM song WHERE languages = "english" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 8
hard
3,626
music_1
[ "artist", "song" ]
Find the names of the artists who are from Bangladesh and have never received rating higher than 7.
SELECT DISTINCT artist_name FROM artist WHERE country = "Bangladesh" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 7
hard
3,627
music_1
[ "artist", "song" ]
What are the names of the different artists from Bangladesh who never received a rating higher than a 7?
SELECT DISTINCT artist_name FROM artist WHERE country = "Bangladesh" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 7
hard
3,628
baseball_1
[ "player_college", "college" ]
what is the full name and id of the college with the largest number of baseball players?
SELECT T1.name_full , T1.college_id FROM college AS T1 JOIN player_college AS T2 ON T1.college_id = T2.college_id GROUP BY T1.college_id ORDER BY count(*) DESC LIMIT 1;
extra
3,629
baseball_1
[ "player_college", "college" ]
Find the full name and id of the college that has the most baseball players.
SELECT T1.name_full , T1.college_id FROM college AS T1 JOIN player_college AS T2 ON T1.college_id = T2.college_id GROUP BY T1.college_id ORDER BY count(*) DESC LIMIT 1;
extra
3,630
baseball_1
[ "team", "salary" ]
What is average salary of the players in the team named 'Boston Red Stockings' ?
SELECT avg(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings'
medium
3,631
baseball_1
[ "team", "salary" ]
Compute the average salary of the players in the team called 'Boston Red Stockings'.
SELECT avg(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings'
medium
3,632
baseball_1
[ "all_star", "player" ]
What are first and last names of players participating in all star game in 1998?
SELECT name_first , name_last FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id WHERE YEAR = 1998
medium
3,633
baseball_1
[ "all_star", "player" ]
List the first and last name for players who participated in all star game in 1998.
SELECT name_first , name_last FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id WHERE YEAR = 1998
medium
3,634
baseball_1
[ "all_star", "player" ]
What are the first name, last name and id of the player with the most all star game experiences? Also list the count.
SELECT T1.name_first , T1.name_last , T1.player_id , count(*) FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY count(*) DESC LIMIT 1;
extra
3,635
baseball_1
[ "all_star", "player" ]
Which player has the most all star game experiences? Give me the first name, last name and id of the player, as well as the number of times the player participated in all star game.
SELECT T1.name_first , T1.name_last , T1.player_id , count(*) FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY count(*) DESC LIMIT 1;
extra
3,636
baseball_1
[ "hall_of_fame" ]
How many players enter hall of fame each year?
SELECT yearid , count(*) FROM hall_of_fame GROUP BY yearid;
medium
3,637
baseball_1
[ "hall_of_fame" ]
Count the number of players who enter hall of fame for each year.
SELECT yearid , count(*) FROM hall_of_fame GROUP BY yearid;
medium
3,638
baseball_1
[ "home_game" ]
What is the average number of attendance at home games for each year?
SELECT YEAR , avg(attendance) FROM home_game GROUP BY YEAR;
medium
3,639
baseball_1
[ "home_game" ]
For each year, return the year and the average number of attendance at home games.
SELECT YEAR , avg(attendance) FROM home_game GROUP BY YEAR;
medium
3,640
baseball_1
[ "home_game", "team" ]
In 2014, what are the id and rank of the team that has the largest average number of attendance?
SELECT T2.team_id , T2.rank FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id WHERE T1.year = 2014 GROUP BY T1.team_id ORDER BY avg(T1.attendance) DESC LIMIT 1;
extra
3,641
baseball_1
[ "home_game", "team" ]
Find the id and rank of the team that has the highest average attendance rate in 2014.
SELECT T2.team_id , T2.rank FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id WHERE T1.year = 2014 GROUP BY T1.team_id ORDER BY avg(T1.attendance) DESC LIMIT 1;
extra
3,642
baseball_1
[ "manager_award", "player" ]
What are the manager's first name, last name and id who won the most manager award?
SELECT T1.name_first , T1.name_last , T2.player_id FROM player AS T1 JOIN manager_award AS T2 ON T1.player_id = T2.player_id GROUP BY T2.player_id ORDER BY count(*) DESC LIMIT 1;
extra
3,643
baseball_1
[ "manager_award", "player" ]
Which manager won the most manager award? Give me the manager's first name, last name and id.
SELECT T1.name_first , T1.name_last , T2.player_id FROM player AS T1 JOIN manager_award AS T2 ON T1.player_id = T2.player_id GROUP BY T2.player_id ORDER BY count(*) DESC LIMIT 1;
extra
3,644
baseball_1
[ "park" ]
How many parks are there in the state of NY?
SELECT count(*) FROM park WHERE state = 'NY';
easy
3,645
baseball_1
[ "park" ]
Show me the number of parks the state of NY has.
SELECT count(*) FROM park WHERE state = 'NY';
easy
3,646
baseball_1
[ "player_award", "player" ]
Which 3 players won the most player awards? List their full name and id.
SELECT T1.name_first , T1.name_last , T1.player_id FROM player AS T1 JOIN player_award AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY count(*) DESC LIMIT 3;
extra
3,647
baseball_1
[ "player_award", "player" ]
Find the first name, last name and id for the top three players won the most player awards.
SELECT T1.name_first , T1.name_last , T1.player_id FROM player AS T1 JOIN player_award AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY count(*) DESC LIMIT 3;
extra
3,648
baseball_1
[ "player" ]
List three countries which are the origins of the least players.
SELECT birth_country FROM player GROUP BY birth_country ORDER BY count(*) ASC LIMIT 3;
hard
3,649
baseball_1
[ "player" ]
What are the three countries that the least players are from?
SELECT birth_country FROM player GROUP BY birth_country ORDER BY count(*) ASC LIMIT 3;
hard
3,650
baseball_1
[ "player" ]
Find all the players' first name and last name who have empty death record.
SELECT name_first , name_last FROM player WHERE death_year = '';
medium
3,651
baseball_1
[ "player" ]
What are the first name and last name of the players whose death record is empty?
SELECT name_first , name_last FROM player WHERE death_year = '';
medium
3,652
baseball_1
[ "player" ]
How many players born in USA are right-handed batters? That is, have the batter value 'R'.
SELECT count(*) FROM player WHERE birth_country = 'USA' AND bats = 'R';
medium
3,653
baseball_1
[ "player" ]
Count the number of players who were born in USA and have bats information 'R'.
SELECT count(*) FROM player WHERE birth_country = 'USA' AND bats = 'R';
medium
3,654
baseball_1
[ "player_college", "college", "player" ]
What is the average height of the players from the college named 'Yale University'?
SELECT avg(T1.height) FROM player AS T1 JOIN player_college AS T2 ON T1.player_id = T2.player_id JOIN college AS T3 ON T3.college_id = T2.college_id WHERE T3.name_full = 'Yale University';
hard
3,655
baseball_1
[ "player_college", "college", "player" ]
Find the average height of the players who belong to the college called 'Yale University'.
SELECT avg(T1.height) FROM player AS T1 JOIN player_college AS T2 ON T1.player_id = T2.player_id JOIN college AS T3 ON T3.college_id = T2.college_id WHERE T3.name_full = 'Yale University';
hard
3,656
baseball_1
[ "team", "salary" ]
What is the highest salary among each team? List the team name, id and maximum salary.
SELECT T1.name , T1.team_id , max(T2.salary) FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id;
medium
3,657
baseball_1
[ "team", "salary" ]
For each team, return the team name, id and the maximum salary among the team.
SELECT T1.name , T1.team_id , max(T2.salary) FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id;
medium
3,658
baseball_1
[ "team", "salary" ]
What are the name and id of the team offering the lowest average salary?
SELECT T1.name , T1.team_id FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id ORDER BY avg(T2.salary) ASC LIMIT 1;
extra
3,659
baseball_1
[ "team", "salary" ]
Which team offers the lowest average salary? Give me the name and id of the team.
SELECT T1.name , T1.team_id FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id ORDER BY avg(T2.salary) ASC LIMIT 1;
extra
3,660
baseball_1
[ "player_award", "player" ]
Find the players' first name and last name who won award both in 1960 and in 1961.
SELECT T1.name_first , T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1960 INTERSECT SELECT T1.name_first , T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1961
extra
3,661
baseball_1
[ "player_award", "player" ]
Which players won awards in both 1960 and 1961? Return their first names and last names.
SELECT T1.name_first , T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1960 INTERSECT SELECT T1.name_first , T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1961
extra
3,662
baseball_1
[ "player" ]
List players' first name and last name who have weight greater than 220 or height shorter than 75.
SELECT name_first , name_last FROM player WHERE weight > 220 OR height < 75
extra
3,663
baseball_1
[ "player" ]
What are the first name and last name of the players who have weight above 220 or height below 75?
SELECT name_first , name_last FROM player WHERE weight > 220 OR height < 75
extra
3,664
baseball_1
[ "postseason", "team" ]
List the maximum scores of the team Boston Red Stockings when the team won in postseason?
SELECT max(T1.wins) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings';
medium
3,665
baseball_1
[ "postseason", "team" ]
What are the maximum scores the team Boston Red Stockings got when the team won in postseason?
SELECT max(T1.wins) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings';
medium
3,666
baseball_1
[ "postseason", "team" ]
How many times did Boston Red Stockings lose in 2009 postseason?
SELECT count(*) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2009;
medium
3,667
baseball_1
[ "postseason", "team" ]
Count the number of times the team "Boston Red Stockings" lost in 2009 postseason.
SELECT count(*) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2009;
medium
3,668
baseball_1
[ "postseason", "team" ]
What are the name and id of the team with the most victories in 2008 postseason?
SELECT T2.name , T1.team_id_winner FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T1.year = 2008 GROUP BY T1.team_id_winner ORDER BY count(*) DESC LIMIT 1;
extra
3,669
baseball_1
[ "postseason", "team" ]
Find the name and id of the team that won the most times in 2008 postseason.
SELECT T2.name , T1.team_id_winner FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T1.year = 2008 GROUP BY T1.team_id_winner ORDER BY count(*) DESC LIMIT 1;
extra
3,670
baseball_1
[ "postseason", "team" ]
What is the number of wins the team Boston Red Stockings got in the postseasons each year in history?
SELECT count(*) , T1.year FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' GROUP BY T1.year
hard
3,671
baseball_1
[ "postseason", "team" ]
For each year, return the year and the number of times the team Boston Red Stockings won in the postseasons.
SELECT count(*) , T1.year FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' GROUP BY T1.year
hard
3,672
baseball_1
[ "postseason", "team" ]
What is the total number of postseason games that team Boston Red Stockings participated in?
SELECT count(*) FROM ( SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' UNION SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' );
easy
3,673
baseball_1
[ "postseason", "team" ]
How many times in total did the team Boston Red Stockings participate in postseason games?
SELECT count(*) FROM ( SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' UNION SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' );
easy
3,674
baseball_1
[ "postseason" ]
How many games in 1885 postseason resulted in ties (that is, the value of "ties" is '1')?
SELECT count(*) FROM postseason WHERE YEAR = 1885 AND ties = 1;
medium
3,675
baseball_1
[ "postseason" ]
Find the number of tied games (the value of "ties" is '1') in 1885 postseason.
SELECT count(*) FROM postseason WHERE YEAR = 1885 AND ties = 1;
medium
3,676
baseball_1
[ "team", "salary" ]
What is the total salary paid by team Boston Red Stockings in 2010?
SELECT sum(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2010
medium
3,677
baseball_1
[ "team", "salary" ]
What is the total salary expenses of team Boston Red Stockings in 2010?
SELECT sum(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2010
medium
3,678
baseball_1
[ "team", "salary" ]
How many players were in the team Boston Red Stockings in 2000?
SELECT count(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000
medium
3,679
baseball_1
[ "team", "salary" ]
How many players did Boston Red Stockings have in 2000?
SELECT count(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000
medium
3,680
baseball_1
[ "salary" ]
List the 3 highest salaries of the players in 2001?
SELECT salary FROM salary WHERE YEAR = 2001 ORDER BY salary DESC LIMIT 3;
hard
3,681
baseball_1
[ "salary" ]
How much salary did the top 3 well-paid players get in 2001?
SELECT salary FROM salary WHERE YEAR = 2001 ORDER BY salary DESC LIMIT 3;
hard
3,682
baseball_1
[ "salary" ]
What were all the salary values of players in 2010 and 2001?
SELECT salary FROM salary WHERE YEAR = 2010 UNION SELECT salary FROM salary WHERE YEAR = 2001
hard
3,683
baseball_1
[ "salary" ]
List all the salary values players received in 2010 and 2001.
SELECT salary FROM salary WHERE YEAR = 2010 UNION SELECT salary FROM salary WHERE YEAR = 2001
hard
3,684
baseball_1
[ "hall_of_fame" ]
In which year did the least people enter hall of fame?
SELECT yearid FROM hall_of_fame GROUP BY yearid ORDER BY count(*) ASC LIMIT 1;
hard
3,685
baseball_1
[ "hall_of_fame" ]
Find the year in which the least people enter hall of fame.
SELECT yearid FROM hall_of_fame GROUP BY yearid ORDER BY count(*) ASC LIMIT 1;
hard
3,686
baseball_1
[ "park" ]
How many parks are there in Atlanta city?
SELECT count(*) FROM park WHERE city = 'Atlanta';
easy
3,687
baseball_1
[ "park" ]
How many parks does Atlanta city have?
SELECT count(*) FROM park WHERE city = 'Atlanta';
easy
3,688
baseball_1
[ "home_game", "park" ]
How many games were played in park "Columbia Park" in 1907?
SELECT count(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 1907 AND T2.park_name = 'Columbia Park';
medium
3,689
baseball_1
[ "home_game", "park" ]
Count the number of games taken place in park "Columbia Park" in 1907.
SELECT count(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 1907 AND T2.park_name = 'Columbia Park';
medium
3,690
baseball_1
[ "home_game", "park" ]
How many games were played in city Atlanta in 2000?
SELECT count(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 2000 AND T2.city = 'Atlanta';
medium
3,691
baseball_1
[ "home_game", "park" ]
Find the number of games taken place in city Atlanta in 2000.
SELECT count(*) FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 2000 AND T2.city = 'Atlanta';
medium
3,692
baseball_1
[ "home_game", "team" ]
What is the total home game attendance of team Boston Red Stockings from 2000 to 2010?
SELECT sum(T1.attendance) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 2000 AND 2010;
medium
3,693
baseball_1
[ "home_game", "team" ]
How many games in total did team Boston Red Stockings attend from 2000 to 2010?
SELECT sum(T1.attendance) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 2000 AND 2010;
medium
3,694
baseball_1
[ "player", "salary" ]
How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total?
SELECT sum(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990;
medium
3,695
baseball_1
[ "player", "salary" ]
Compute the total salary that the player with first name Len and last name Barker received between 1985 to 1990.
SELECT sum(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990;
medium
3,696
baseball_1
[ "player", "team", "salary" ]
List players' first name and last name who received salary from team Washington Nationals in both 2005 and 2007.
SELECT T2.name_first , T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2005 AND T3.name = 'Washington Nationals' INTERSECT SELECT T2.name_first , T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2007 AND T3.name = 'Washington Nationals'
extra
3,697
baseball_1
[ "player", "team", "salary" ]
What are the first name and last name of the players who were paid salary by team Washington Nationals in both 2005 and 2007?
SELECT T2.name_first , T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2005 AND T3.name = 'Washington Nationals' INTERSECT SELECT T2.name_first , T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2007 AND T3.name = 'Washington Nationals'
extra
3,698
baseball_1
[ "home_game", "team" ]
How many home games did the team Boston Red Stockings play from 1990 to 2000 in total?
SELECT sum(T1.games) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 1990 AND 2000;
medium
3,699
baseball_1
[ "home_game", "team" ]
Count the total number of games the team Boston Red Stockings attended from 1990 to 2000.
SELECT sum(T1.games) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 1990 AND 2000;
medium