db_id
stringclasses
31 values
schema
stringclasses
22 values
schemaComEx
stringclasses
22 values
question
stringlengths
18
181
query
stringlengths
20
577
answer
stringlengths
14
41.7k
complexity
stringclasses
4 values
distinct
bool
2 classes
like
bool
2 classes
between
bool
2 classes
order_by
bool
2 classes
limit
bool
2 classes
grouby_by
bool
2 classes
having
bool
2 classes
single_join
bool
2 classes
multiple_join
bool
2 classes
multiple_select
bool
2 classes
intersect
bool
2 classes
except
bool
2 classes
union
bool
2 classes
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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')
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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')
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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)
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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)
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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")
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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")
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
music_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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'
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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'
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
How many players enter hall of fame each year?
SELECT yearid , count(*) FROM hall_of_fame GROUP BY yearid;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Count the number of players who enter hall of fame for each year.
SELECT yearid , count(*) FROM hall_of_fame GROUP BY yearid;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
What is the average number of attendance at home games for each year?
SELECT YEAR , avg(attendance) FROM home_game GROUP BY YEAR;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
How many parks are there in the state of NY?
SELECT count(*) FROM park WHERE state = 'NY';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Show me the number of parks the state of NY has.
SELECT count(*) FROM park WHERE state = 'NY';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Find all the players' first name and last name who have empty death record.
SELECT name_first , name_last FROM player WHERE death_year = '';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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 = '';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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' );
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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' );
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
List the 3 highest salaries of the players in 2001?
SELECT salary FROM salary WHERE YEAR = 2001 ORDER BY salary DESC LIMIT 3;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
How many parks are there in Atlanta city?
SELECT count(*) FROM park WHERE city = 'Atlanta';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
How many parks does Atlanta city have?
SELECT count(*) FROM park WHERE city = 'Atlanta';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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';
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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'
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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'
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
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;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Which team had the least number of attendances in home games in 1980?
SELECT T2.name FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T1.year = 1980 ORDER BY T1.attendance ASC LIMIT 1;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Find the team that attended the least number of home games in 1980.
SELECT T2.name FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T1.year = 1980 ORDER BY T1.attendance ASC LIMIT 1;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
List the names of states that have more than 2 parks.
SELECT state FROM park GROUP BY state HAVING count(*) > 2;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
baseball_1
null
null
Which states have more than 2 parks?
SELECT state FROM park GROUP BY state HAVING count(*) > 2;
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null