text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?
### CONTEXT
CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)
### ANSWER
SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" AND grid < 4
|
{
"answer": "SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = \"yamaha\" AND rider = \"garry mccoy\" AND grid < 4",
"context": "CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)",
"question": "What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?"
}
|
### QUESTION
What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone?
### CONTEXT
CREATE TABLE table_name_20 (syracuse VARCHAR, utica VARCHAR, rochester VARCHAR)
### ANSWER
SELECT syracuse FROM table_name_20 WHERE utica = "union springs shale and limestone" AND rochester = "union springs shale and limestone"
|
{
"answer": "SELECT syracuse FROM table_name_20 WHERE utica = \"union springs shale and limestone\" AND rochester = \"union springs shale and limestone\"",
"context": "CREATE TABLE table_name_20 (syracuse VARCHAR, utica VARCHAR, rochester VARCHAR)",
"question": "What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone?"
}
|
### QUESTION
Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?
### CONTEXT
CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)
### ANSWER
SELECT year FROM table_name_7 WHERE award = "17th bangkok critics assembly awards" AND category = "best original score"
|
{
"answer": "SELECT year FROM table_name_7 WHERE award = \"17th bangkok critics assembly awards\" AND category = \"best original score\"",
"context": "CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)",
"question": "Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?"
}
|
### QUESTION
What is Hometown, when Sport is "Basketball", and when Winner is "Dwight Howard"?
### CONTEXT
CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)
### ANSWER
SELECT hometown FROM table_name_83 WHERE sport = "basketball" AND winner = "dwight howard"
|
{
"answer": "SELECT hometown FROM table_name_83 WHERE sport = \"basketball\" AND winner = \"dwight howard\"",
"context": "CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)",
"question": "What is Hometown, when Sport is \"Basketball\", and when Winner is \"Dwight Howard\"?"
}
|
### QUESTION
Which title has tracks smaller than 7 with translation of an island?
### CONTEXT
CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)
### ANSWER
SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island"
|
{
"answer": "SELECT title FROM table_name_67 WHERE track < 7 AND translation = \"an island\"",
"context": "CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)",
"question": "Which title has tracks smaller than 7 with translation of an island?"
}
|
### QUESTION
What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'?
### CONTEXT
CREATE TABLE services (service_type_code VARCHAR, organization_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, organization_details VARCHAR)
### ANSWER
SELECT DISTINCT T1.service_type_code FROM services AS T1 JOIN organizations AS T2 ON T1.organization_id = T2.organization_id WHERE T2.organization_details = 'Denesik and Sons Party'
|
{
"answer": "SELECT DISTINCT T1.service_type_code FROM services AS T1 JOIN organizations AS T2 ON T1.organization_id = T2.organization_id WHERE T2.organization_details = 'Denesik and Sons Party'",
"context": "CREATE TABLE services (service_type_code VARCHAR, organization_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, organization_details VARCHAR)",
"question": "What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'?"
}
|
### QUESTION
What's the official website of Burning Flame 烈火雄心 with 22 episodes?
### CONTEXT
CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)
### ANSWER
SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = "burning flame 烈火雄心"
|
{
"answer": "SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = \"burning flame 烈火雄心\"",
"context": "CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)",
"question": "What's the official website of Burning Flame 烈火雄心 with 22 episodes?"
}
|
### QUESTION
On January 29, who had the decision of Mason?
### CONTEXT
CREATE TABLE table_name_17 (visitor VARCHAR, decision VARCHAR, date VARCHAR)
### ANSWER
SELECT visitor FROM table_name_17 WHERE decision = "mason" AND date = "january 29"
|
{
"answer": "SELECT visitor FROM table_name_17 WHERE decision = \"mason\" AND date = \"january 29\"",
"context": "CREATE TABLE table_name_17 (visitor VARCHAR, decision VARCHAR, date VARCHAR)",
"question": "On January 29, who had the decision of Mason?"
}
|
### QUESTION
Who held the fastest lap in the race in texas and dario franchitti is the winning driver?
### CONTEXT
CREATE TABLE table_19850806_3 (fastest_lap VARCHAR, race VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_19850806_3 WHERE race = "Texas" AND winning_driver = "Dario Franchitti"
|
{
"answer": "SELECT fastest_lap FROM table_19850806_3 WHERE race = \"Texas\" AND winning_driver = \"Dario Franchitti\"",
"context": "CREATE TABLE table_19850806_3 (fastest_lap VARCHAR, race VARCHAR, winning_driver VARCHAR)",
"question": "Who held the fastest lap in the race in texas and dario franchitti is the winning driver?"
}
|
### QUESTION
What is the status for a journal with the ISSN of 0149-1830?
### CONTEXT
CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR)
### ANSWER
SELECT status FROM table_name_62 WHERE issn = "0149-1830"
|
{
"answer": "SELECT status FROM table_name_62 WHERE issn = \"0149-1830\"",
"context": "CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR)",
"question": "What is the status for a journal with the ISSN of 0149-1830?"
}
|
### QUESTION
Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?
### CONTEXT
CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR)
### ANSWER
SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = "king" AND seats_won > 116 AND year = "1921"
|
{
"answer": "SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = \"king\" AND seats_won > 116 AND year = \"1921\"",
"context": "CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR)",
"question": "Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?"
}
|
### QUESTION
How many touchdowns did bill culligan have?
### CONTEXT
CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = "Bill Culligan"
|
{
"answer": "SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = \"Bill Culligan\"",
"context": "CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR)",
"question": "How many touchdowns did bill culligan have?"
}
|
### QUESTION
When the team is newman/haas racing and the grid size is 3, what's the time/retired?
### CONTEXT
CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)
### ANSWER
SELECT time_retired FROM table_name_8 WHERE team = "newman/haas racing" AND grid = 3
|
{
"answer": "SELECT time_retired FROM table_name_8 WHERE team = \"newman/haas racing\" AND grid = 3",
"context": "CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)",
"question": "When the team is newman/haas racing and the grid size is 3, what's the time/retired?"
}
|
### QUESTION
Who has a religion of ☪ and more than 1853 votes?
### CONTEXT
CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)
### ANSWER
SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = "☪"
|
{
"answer": "SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = \"☪\"",
"context": "CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)",
"question": "Who has a religion of ☪ and more than 1853 votes?"
}
|
### QUESTION
What are the names of body builders whose total score is higher than 300?
### CONTEXT
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)
### ANSWER
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total > 300
|
{
"answer": "SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total > 300",
"context": "CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)",
"question": "What are the names of body builders whose total score is higher than 300?"
}
|
### QUESTION
What province was New Plymouth formed from?
### CONTEXT
CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR)
### ANSWER
SELECT formed_from FROM table_275023_1 WHERE province = "New Plymouth"
|
{
"answer": "SELECT formed_from FROM table_275023_1 WHERE province = \"New Plymouth\"",
"context": "CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR)",
"question": "What province was New Plymouth formed from?"
}
|
### QUESTION
What is the airport with the IATA MEL?
### CONTEXT
CREATE TABLE table_17419587_1 (airport VARCHAR, iata VARCHAR)
### ANSWER
SELECT COUNT(airport) FROM table_17419587_1 WHERE iata = "MEL"
|
{
"answer": "SELECT COUNT(airport) FROM table_17419587_1 WHERE iata = \"MEL\"",
"context": "CREATE TABLE table_17419587_1 (airport VARCHAR, iata VARCHAR)",
"question": "What is the airport with the IATA MEL?"
}
|
### QUESTION
What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?
### CONTEXT
CREATE TABLE table_25999087_2 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)
### ANSWER
SELECT team_classification FROM table_25999087_2 WHERE points_classification = "Philippe Gilbert" AND mountains_classification = "Johnny Hoogerland" AND stage < 9.0
|
{
"answer": "SELECT team_classification FROM table_25999087_2 WHERE points_classification = \"Philippe Gilbert\" AND mountains_classification = \"Johnny Hoogerland\" AND stage < 9.0",
"context": "CREATE TABLE table_25999087_2 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)",
"question": "What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?"
}
|
### QUESTION
What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?
### CONTEXT
CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR, wounded VARCHAR)
### ANSWER
SELECT complement FROM table_2596811_12 WHERE killed = "0 off 3 men" AND wounded = "0 off 2 men"
|
{
"answer": "SELECT complement FROM table_2596811_12 WHERE killed = \"0 off 3 men\" AND wounded = \"0 off 2 men\"",
"context": "CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR, wounded VARCHAR)",
"question": "What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?"
}
|
### QUESTION
What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?
### CONTEXT
CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = "brandon wheat kings ( whl )" AND player = "mike perovich (d)" AND pick < 23
|
{
"answer": "SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = \"brandon wheat kings ( whl )\" AND player = \"mike perovich (d)\" AND pick < 23",
"context": "CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)",
"question": "What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?"
}
|
### QUESTION
What are the points against for 2000, when games won is 4 (1)?
### CONTEXT
CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)
### ANSWER
SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2000 AND games_won___tests__ = "4 (1)"
|
{
"answer": "SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2000 AND games_won___tests__ = \"4 (1)\"",
"context": "CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)",
"question": "What are the points against for 2000, when games won is 4 (1)?"
}
|
### QUESTION
what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?
### CONTEXT
CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR)
### ANSWER
SELECT years FROM table_name_51 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8"
|
{
"answer": "SELECT years FROM table_name_51 WHERE notes = \"laredo, limited, overland\" AND engine = \"5.7l hemi v8\"",
"context": "CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR)",
"question": "what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?"
}
|
### QUESTION
What was the date of the discus throw for Bulgaria?
### CONTEXT
CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR)
### ANSWER
SELECT date FROM table_name_40 WHERE nationality = "bulgaria" AND event = "discus throw"
|
{
"answer": "SELECT date FROM table_name_40 WHERE nationality = \"bulgaria\" AND event = \"discus throw\"",
"context": "CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR)",
"question": "What was the date of the discus throw for Bulgaria?"
}
|
### QUESTION
Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1?
### CONTEXT
CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR)
### ANSWER
SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = "todd herremans" AND avg > 1
|
{
"answer": "SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = \"todd herremans\" AND avg > 1",
"context": "CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR)",
"question": "Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1?"
}
|
### QUESTION
What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?
### CONTEXT
CREATE TABLE table_name_83 (loses INTEGER, position VARCHAR, games_played VARCHAR)
### ANSWER
SELECT MIN(loses) FROM table_name_83 WHERE position < 8 AND games_played < 30
|
{
"answer": "SELECT MIN(loses) FROM table_name_83 WHERE position < 8 AND games_played < 30",
"context": "CREATE TABLE table_name_83 (loses INTEGER, position VARCHAR, games_played VARCHAR)",
"question": "What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?"
}
|
### QUESTION
What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?
### CONTEXT
CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR)
### ANSWER
SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8
|
{
"answer": "SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8",
"context": "CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR)",
"question": "What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?"
}
|
### QUESTION
who is the player when the pick is 15 and the year [A] is 2000?
### CONTEXT
CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
### ANSWER
SELECT player_name FROM table_name_75 WHERE pick = "15" AND year_[a_] = 2000
|
{
"answer": "SELECT player_name FROM table_name_75 WHERE pick = \"15\" AND year_[a_] = 2000",
"context": "CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)",
"question": "who is the player when the pick is 15 and the year [A] is 2000?"
}
|
### QUESTION
Name the studio analysts for espn with erin andrews and tom rinaldi
### CONTEXT
CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR)
### ANSWER
SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = "ESPN" AND sideline_reporter_s_ = "Erin Andrews and Tom Rinaldi"
|
{
"answer": "SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = \"ESPN\" AND sideline_reporter_s_ = \"Erin Andrews and Tom Rinaldi\"",
"context": "CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR)",
"question": "Name the studio analysts for espn with erin andrews and tom rinaldi"
}
|
### QUESTION
What is the Film title used in nomination of Mig Og Charly?
### CONTEXT
CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = "mig og charly"
|
{
"answer": "SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = \"mig og charly\"",
"context": "CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)",
"question": "What is the Film title used in nomination of Mig Og Charly?"
}
|
### QUESTION
What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?
### CONTEXT
CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = "toronto maple leafs" AND nationality = "united states"
|
{
"answer": "SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = \"toronto maple leafs\" AND nationality = \"united states\"",
"context": "CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)",
"question": "What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?"
}
|
### QUESTION
who were the winners in west virginia
### CONTEXT
CREATE TABLE table_1133844_4 (candidates_winning_candidate_in_bold VARCHAR, state__linked_to_summaries_below_ VARCHAR)
### ANSWER
SELECT candidates_winning_candidate_in_bold FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = "West Virginia"
|
{
"answer": "SELECT candidates_winning_candidate_in_bold FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = \"West Virginia\"",
"context": "CREATE TABLE table_1133844_4 (candidates_winning_candidate_in_bold VARCHAR, state__linked_to_summaries_below_ VARCHAR)",
"question": "who were the winners in west virginia"
}
|
### QUESTION
What in 2007 has a 2010 of qf, and a 2012 of w?
### CONTEXT
CREATE TABLE table_name_92 (Id VARCHAR)
### ANSWER
SELECT 2007 FROM table_name_92 WHERE 2010 = "qf" AND 2012 = "w"
|
{
"answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"qf\" AND 2012 = \"w\"",
"context": "CREATE TABLE table_name_92 (Id VARCHAR)",
"question": "What in 2007 has a 2010 of qf, and a 2012 of w?"
}
|
### QUESTION
What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?
### CONTEXT
CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR)
### ANSWER
SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38
|
{
"answer": "SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38",
"context": "CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR)",
"question": "What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?"
}
|
### QUESTION
What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?
### CONTEXT
CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR)
### ANSWER
SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = "10.1" AND shell__lb_ < 12.5
|
{
"answer": "SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = \"10.1\" AND shell__lb_ < 12.5",
"context": "CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR)",
"question": "What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?"
}
|
### QUESTION
What is the total failures of heliocentric orbit orbital regimes and launches less than 1?
### CONTEXT
CREATE TABLE table_name_33 (failures INTEGER, orbital_regime VARCHAR, launches VARCHAR)
### ANSWER
SELECT SUM(failures) FROM table_name_33 WHERE orbital_regime = "heliocentric orbit" AND launches < 1
|
{
"answer": "SELECT SUM(failures) FROM table_name_33 WHERE orbital_regime = \"heliocentric orbit\" AND launches < 1",
"context": "CREATE TABLE table_name_33 (failures INTEGER, orbital_regime VARCHAR, launches VARCHAR)",
"question": "What is the total failures of heliocentric orbit orbital regimes and launches less than 1?"
}
|
### QUESTION
What was the original title of the Bruno Barreto film in 1989
### CONTEXT
CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR)
### ANSWER
SELECT original_title FROM table_15277629_1 WHERE director = "Bruno Barreto" AND year__ceremony_ = 1989
|
{
"answer": "SELECT original_title FROM table_15277629_1 WHERE director = \"Bruno Barreto\" AND year__ceremony_ = 1989",
"context": "CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR)",
"question": "What was the original title of the Bruno Barreto film in 1989"
}
|
### QUESTION
Which Points is the lowest one that has Touchdowns smaller than 2, and an Extra points of 7, and a Field goals smaller than 0?
### CONTEXT
CREATE TABLE table_name_85 (points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_name_85 WHERE touchdowns < 2 AND extra_points = 7 AND field_goals < 0
|
{
"answer": "SELECT MIN(points) FROM table_name_85 WHERE touchdowns < 2 AND extra_points = 7 AND field_goals < 0",
"context": "CREATE TABLE table_name_85 (points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)",
"question": "Which Points is the lowest one that has Touchdowns smaller than 2, and an Extra points of 7, and a Field goals smaller than 0?"
}
|
### QUESTION
What is the to par of United States' Cristie Kerr?
### CONTEXT
CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_66 WHERE country = "united states" AND player = "cristie kerr"
|
{
"answer": "SELECT to_par FROM table_name_66 WHERE country = \"united states\" AND player = \"cristie kerr\"",
"context": "CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)",
"question": "What is the to par of United States' Cristie Kerr?"
}
|
### QUESTION
Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?
### CONTEXT
CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
### ANSWER
SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"
|
{
"answer": "SELECT event FROM table_name_24 WHERE res = \"win\" AND round = \"n/a\" AND opponent = \"nicolas smith\"",
"context": "CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)",
"question": "Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?"
}
|
### QUESTION
what is the score when the country is united states, the to par is +2 and the player is phil hancock?
### CONTEXT
CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)
### ANSWER
SELECT score FROM table_name_49 WHERE country = "united states" AND to_par = "+2" AND player = "phil hancock"
|
{
"answer": "SELECT score FROM table_name_49 WHERE country = \"united states\" AND to_par = \"+2\" AND player = \"phil hancock\"",
"context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)",
"question": "what is the score when the country is united states, the to par is +2 and the player is phil hancock?"
}
|
### QUESTION
How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?
### CONTEXT
CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = "botafogo" AND position < 2
|
{
"answer": "SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = \"botafogo\" AND position < 2",
"context": "CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCHAR)",
"question": "How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?"
}
|
### QUESTION
When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?
### CONTEXT
CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)
### ANSWER
SELECT date FROM table_name_86 WHERE game > 4 AND team = "san antonio" AND record = "4-3"
|
{
"answer": "SELECT date FROM table_name_86 WHERE game > 4 AND team = \"san antonio\" AND record = \"4-3\"",
"context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)",
"question": "When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?"
}
|
### QUESTION
Which Country has a To par smaller than 7, and a Total of 148?
### CONTEXT
CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, total VARCHAR)
### ANSWER
SELECT country FROM table_name_38 WHERE to_par < 7 AND total = 148
|
{
"answer": "SELECT country FROM table_name_38 WHERE to_par < 7 AND total = 148",
"context": "CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, total VARCHAR)",
"question": "Which Country has a To par smaller than 7, and a Total of 148?"
}
|
### QUESTION
When was the game happening at Halton Stadium?
### CONTEXT
CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_13328239_4 WHERE venue = "Halton Stadium"
|
{
"answer": "SELECT date FROM table_13328239_4 WHERE venue = \"Halton Stadium\"",
"context": "CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR)",
"question": "When was the game happening at Halton Stadium?"
}
|
### QUESTION
Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department.
### CONTEXT
CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)
### ANSWER
SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics')
|
{
"answer": "SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics')",
"context": "CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR)",
"question": "Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department."
}
|
### QUESTION
What was the position of the Atl. Colegiales team?
### CONTEXT
CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR)
### ANSWER
SELECT MAX(position) FROM table_18597302_1 WHERE team = "Atl. Colegiales"
|
{
"answer": "SELECT MAX(position) FROM table_18597302_1 WHERE team = \"Atl. Colegiales\"",
"context": "CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR)",
"question": "What was the position of the Atl. Colegiales team?"
}
|
### QUESTION
Who was on Jason's team for the 12 June 2009 episode?
### CONTEXT
CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)
### ANSWER
SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = "12 June 2009"
|
{
"answer": "SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = \"12 June 2009\"",
"context": "CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)",
"question": "Who was on Jason's team for the 12 June 2009 episode?"
}
|
### QUESTION
Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?
### CONTEXT
CREATE TABLE table_name_13 (january INTEGER, opponent VARCHAR, points VARCHAR)
### ANSWER
SELECT MIN(january) FROM table_name_13 WHERE opponent = "florida panthers" AND points < 59
|
{
"answer": "SELECT MIN(january) FROM table_name_13 WHERE opponent = \"florida panthers\" AND points < 59",
"context": "CREATE TABLE table_name_13 (january INTEGER, opponent VARCHAR, points VARCHAR)",
"question": "Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?"
}
|
### QUESTION
What was the score for the December 11 game against the Ottawa Senators?
### CONTEXT
CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_52 WHERE visitor = "ottawa senators" AND date = "december 11"
|
{
"answer": "SELECT score FROM table_name_52 WHERE visitor = \"ottawa senators\" AND date = \"december 11\"",
"context": "CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR)",
"question": "What was the score for the December 11 game against the Ottawa Senators?"
}
|
### QUESTION
What are the heights of body builders with total score smaller than 315?
### CONTEXT
CREATE TABLE people (Height VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)
### ANSWER
SELECT T2.Height FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total < 315
|
{
"answer": "SELECT T2.Height FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Total < 315",
"context": "CREATE TABLE people (Height VARCHAR, People_ID VARCHAR); CREATE TABLE body_builder (People_ID VARCHAR, Total INTEGER)",
"question": "What are the heights of body builders with total score smaller than 315?"
}
|
### QUESTION
how many times is the rank less than 6, certification 2x platinum and the peak position 2?
### CONTEXT
CREATE TABLE table_name_49 (sales VARCHAR, peak_position VARCHAR, rank VARCHAR, certification VARCHAR)
### ANSWER
SELECT COUNT(sales) FROM table_name_49 WHERE rank < 6 AND certification = "2x platinum" AND peak_position = "2"
|
{
"answer": "SELECT COUNT(sales) FROM table_name_49 WHERE rank < 6 AND certification = \"2x platinum\" AND peak_position = \"2\"",
"context": "CREATE TABLE table_name_49 (sales VARCHAR, peak_position VARCHAR, rank VARCHAR, certification VARCHAR)",
"question": "how many times is the rank less than 6, certification 2x platinum and the peak position 2?"
}
|
### QUESTION
Which season had less than 25.4 viewers and had a viewer rank of #6?
### CONTEXT
CREATE TABLE table_name_43 (season INTEGER, households_viewers__in_millions_ VARCHAR, viewer_rank___number_ VARCHAR)
### ANSWER
SELECT MIN(season) FROM table_name_43 WHERE households_viewers__in_millions_ < 25.4 AND viewer_rank___number_ = "#6"
|
{
"answer": "SELECT MIN(season) FROM table_name_43 WHERE households_viewers__in_millions_ < 25.4 AND viewer_rank___number_ = \"#6\"",
"context": "CREATE TABLE table_name_43 (season INTEGER, households_viewers__in_millions_ VARCHAR, viewer_rank___number_ VARCHAR)",
"question": "Which season had less than 25.4 viewers and had a viewer rank of #6?"
}
|
### QUESTION
Tell me the sum of earnings for rank less than 1
### CONTEXT
CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)
### ANSWER
SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1
|
{
"answer": "SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1",
"context": "CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)",
"question": "Tell me the sum of earnings for rank less than 1"
}
|
### QUESTION
What is the Date when the label was alfa records, and a Catalog of alca-487?
### CONTEXT
CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR)
### ANSWER
SELECT date FROM table_name_61 WHERE label = "alfa records" AND catalog = "alca-487"
|
{
"answer": "SELECT date FROM table_name_61 WHERE label = \"alfa records\" AND catalog = \"alca-487\"",
"context": "CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR)",
"question": "What is the Date when the label was alfa records, and a Catalog of alca-487?"
}
|
### QUESTION
What is the number for D. Shulman if C. Abate has 728 (43%)
### CONTEXT
CREATE TABLE table_name_9 (d_shulman VARCHAR, c_abate VARCHAR)
### ANSWER
SELECT d_shulman FROM table_name_9 WHERE c_abate = "728 (43%)"
|
{
"answer": "SELECT d_shulman FROM table_name_9 WHERE c_abate = \"728 (43%)\"",
"context": "CREATE TABLE table_name_9 (d_shulman VARCHAR, c_abate VARCHAR)",
"question": "What is the number for D. Shulman if C. Abate has 728 (43%)"
}
|
### QUESTION
What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance?
### CONTEXT
CREATE TABLE table_name_10 (round_of_32 VARCHAR, event VARCHAR, quarterfinals VARCHAR, finals VARCHAR, semifinals VARCHAR)
### ANSWER
SELECT round_of_32 FROM table_name_10 WHERE finals = "did not advance" AND semifinals = "did not advance" AND quarterfinals = "did not advance" AND event = "56kg"
|
{
"answer": "SELECT round_of_32 FROM table_name_10 WHERE finals = \"did not advance\" AND semifinals = \"did not advance\" AND quarterfinals = \"did not advance\" AND event = \"56kg\"",
"context": "CREATE TABLE table_name_10 (round_of_32 VARCHAR, event VARCHAR, quarterfinals VARCHAR, finals VARCHAR, semifinals VARCHAR)",
"question": "What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance?"
}
|
### QUESTION
Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?
### CONTEXT
CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)
### ANSWER
SELECT opponent FROM table_name_38 WHERE round = "3" AND time = "n/a" AND rules = "n/a"
|
{
"answer": "SELECT opponent FROM table_name_38 WHERE round = \"3\" AND time = \"n/a\" AND rules = \"n/a\"",
"context": "CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)",
"question": "Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?"
}
|
### QUESTION
How much money did Ian Chamings request?
### CONTEXT
CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)
### ANSWER
SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = "ian chamings"
|
{
"answer": "SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = \"ian chamings\"",
"context": "CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)",
"question": "How much money did Ian Chamings request?"
}
|
### QUESTION
Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011?
### CONTEXT
CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR)
### ANSWER
SELECT written_by FROM table_29087004_2 WHERE directed_by = "Jos Humphrey" AND canada_original_airdate = "Unknown" AND united_states_original_airdate = "August 27, 2011"
|
{
"answer": "SELECT written_by FROM table_29087004_2 WHERE directed_by = \"Jos Humphrey\" AND canada_original_airdate = \"Unknown\" AND united_states_original_airdate = \"August 27, 2011\"",
"context": "CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR)",
"question": "Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011?"
}
|
### QUESTION
What was the archive for the episode with a run time of 25:24?
### CONTEXT
CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)
### ANSWER
SELECT archive FROM table_2102714_1 WHERE run_time = "25:24"
|
{
"answer": "SELECT archive FROM table_2102714_1 WHERE run_time = \"25:24\"",
"context": "CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR)",
"question": "What was the archive for the episode with a run time of 25:24?"
}
|
### QUESTION
Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?
### CONTEXT
CREATE TABLE table_name_13 (year_left INTEGER, school VARCHAR, year_joined VARCHAR)
### ANSWER
SELECT MIN(year_left) FROM table_name_13 WHERE school = "calumet" AND year_joined > 1993
|
{
"answer": "SELECT MIN(year_left) FROM table_name_13 WHERE school = \"calumet\" AND year_joined > 1993",
"context": "CREATE TABLE table_name_13 (year_left INTEGER, school VARCHAR, year_joined VARCHAR)",
"question": "Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?"
}
|
### QUESTION
I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3
### CONTEXT
CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)
### ANSWER
SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = "009 9th" AND number_of_seasons_in_the_premier_league < 3
|
{
"answer": "SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = \"009 9th\" AND number_of_seasons_in_the_premier_league < 3",
"context": "CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)",
"question": "I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3"
}
|
### QUESTION
What is the Away with a Time that is 14:00?
### CONTEXT
CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)
### ANSWER
SELECT away FROM table_name_28 WHERE time = "14:00"
|
{
"answer": "SELECT away FROM table_name_28 WHERE time = \"14:00\"",
"context": "CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)",
"question": "What is the Away with a Time that is 14:00?"
}
|
### QUESTION
Name the height in ft for the player from wyoming
### CONTEXT
CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
### ANSWER
SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = "wyoming"
|
{
"answer": "SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = \"wyoming\"",
"context": "CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)",
"question": "Name the height in ft for the player from wyoming"
}
|
### QUESTION
What are the descriptions of all the project outcomes?
### CONTEXT
CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR)
### ANSWER
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
|
{
"answer": "SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code",
"context": "CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR)",
"question": "What are the descriptions of all the project outcomes?"
}
|
### QUESTION
Name the least hits for year less than 1920 and player of ed delahanty
### CONTEXT
CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR)
### ANSWER
SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = "ed delahanty"
|
{
"answer": "SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = \"ed delahanty\"",
"context": "CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR)",
"question": "Name the least hits for year less than 1920 and player of ed delahanty"
}
|
### QUESTION
What is the result of Samantha Morton being up for best supporting actress in a year later than 1989?
### CONTEXT
CREATE TABLE table_name_78 (result VARCHAR, actor VARCHAR, year VARCHAR, category VARCHAR)
### ANSWER
SELECT result FROM table_name_78 WHERE year > 1989 AND category = "best supporting actress" AND actor = "samantha morton"
|
{
"answer": "SELECT result FROM table_name_78 WHERE year > 1989 AND category = \"best supporting actress\" AND actor = \"samantha morton\"",
"context": "CREATE TABLE table_name_78 (result VARCHAR, actor VARCHAR, year VARCHAR, category VARCHAR)",
"question": "What is the result of Samantha Morton being up for best supporting actress in a year later than 1989?"
}
|
### QUESTION
Which employee has showed up in most circulation history documents. List the employee's name and the number of drafts and copies.
### CONTEXT
CREATE TABLE Circulation_History (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)
### ANSWER
SELECT Employees.employee_name, COUNT(*) FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id GROUP BY Circulation_History.document_id, Circulation_History.draft_number, Circulation_History.copy_number ORDER BY COUNT(*) DESC LIMIT 1
|
{
"answer": "SELECT Employees.employee_name, COUNT(*) FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id GROUP BY Circulation_History.document_id, Circulation_History.draft_number, Circulation_History.copy_number ORDER BY COUNT(*) DESC LIMIT 1",
"context": "CREATE TABLE Circulation_History (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)",
"question": "Which employee has showed up in most circulation history documents. List the employee's name and the number of drafts and copies."
}
|
### QUESTION
Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?
### CONTEXT
CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)
### ANSWER
SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = "64%" AND occupational_pensions = "6%"
|
{
"answer": "SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = \"64%\" AND occupational_pensions = \"6%\"",
"context": "CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)",
"question": "Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?"
}
|
### QUESTION
Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?
### CONTEXT
CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)
### ANSWER
SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12"
|
{
"answer": "SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = \"semi hepa\" AND class = \"h12\"",
"context": "CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)",
"question": "Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?"
}
|
### QUESTION
What position does Syracuse's player have?
### CONTEXT
CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)
### ANSWER
SELECT position FROM table_12165999_1 WHERE college = "Syracuse"
|
{
"answer": "SELECT position FROM table_12165999_1 WHERE college = \"Syracuse\"",
"context": "CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)",
"question": "What position does Syracuse's player have?"
}
|
### QUESTION
What is the nationality of player Jani Hakanpaa?
### CONTEXT
CREATE TABLE table_name_65 (nationality VARCHAR, player VARCHAR)
### ANSWER
SELECT nationality FROM table_name_65 WHERE player = "jani hakanpaa"
|
{
"answer": "SELECT nationality FROM table_name_65 WHERE player = \"jani hakanpaa\"",
"context": "CREATE TABLE table_name_65 (nationality VARCHAR, player VARCHAR)",
"question": "What is the nationality of player Jani Hakanpaa?"
}
|
### QUESTION
Find the number of products for each manufacturer, showing the name of each company.
### CONTEXT
CREATE TABLE products (Manufacturer VARCHAR); CREATE TABLE manufacturers (name VARCHAR, code VARCHAR)
### ANSWER
SELECT COUNT(*), T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code GROUP BY T2.name
|
{
"answer": "SELECT COUNT(*), T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code GROUP BY T2.name",
"context": "CREATE TABLE products (Manufacturer VARCHAR); CREATE TABLE manufacturers (name VARCHAR, code VARCHAR)",
"question": "Find the number of products for each manufacturer, showing the name of each company."
}
|
### QUESTION
What is the Point of Chassis of Lancia d50 in 1954
### CONTEXT
CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR)
### ANSWER
SELECT points FROM table_name_91 WHERE chassis = "lancia d50" AND year = 1954
|
{
"answer": "SELECT points FROM table_name_91 WHERE chassis = \"lancia d50\" AND year = 1954",
"context": "CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR)",
"question": "What is the Point of Chassis of Lancia d50 in 1954"
}
|
### QUESTION
What is the city in Alabama that opened in 1996?
### CONTEXT
CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR)
### ANSWER
SELECT city FROM table_name_89 WHERE year_opened = "1996" AND state = "alabama"
|
{
"answer": "SELECT city FROM table_name_89 WHERE year_opened = \"1996\" AND state = \"alabama\"",
"context": "CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR)",
"question": "What is the city in Alabama that opened in 1996?"
}
|
### QUESTION
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
### CONTEXT
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
### ANSWER
SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)"
|
{
"answer": "SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"428(62%)\"",
"context": "CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)",
"question": "How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?"
}
|
### QUESTION
What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800?
### CONTEXT
CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR)
### ANSWER
SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = "n·m ( lbf·ft ) @ 3,800"
|
{
"answer": "SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = \"n·m ( lbf·ft ) @ 3,800\"",
"context": "CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR)",
"question": "What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800?"
}
|
### QUESTION
How many male (sex is M) students have class senator votes in the fall election cycle?
### CONTEXT
CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR); CREATE TABLE STUDENT (StuID VARCHAR, Sex VARCHAR)
### ANSWER
SELECT COUNT(*) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = Class_Senator_Vote WHERE T1.Sex = "M" AND T2.Election_Cycle = "Fall"
|
{
"answer": "SELECT COUNT(*) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = Class_Senator_Vote WHERE T1.Sex = \"M\" AND T2.Election_Cycle = \"Fall\"",
"context": "CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR); CREATE TABLE STUDENT (StuID VARCHAR, Sex VARCHAR)",
"question": "How many male (sex is M) students have class senator votes in the fall election cycle?"
}
|
### QUESTION
What is the winner in event number 15h?
### CONTEXT
CREATE TABLE table_22050544_1 (winner VARCHAR, event__number VARCHAR)
### ANSWER
SELECT winner FROM table_22050544_1 WHERE event__number = "15H"
|
{
"answer": "SELECT winner FROM table_22050544_1 WHERE event__number = \"15H\"",
"context": "CREATE TABLE table_22050544_1 (winner VARCHAR, event__number VARCHAR)",
"question": "What is the winner in event number 15h?"
}
|
### QUESTION
What is the name and country of origin of the artist who released a song that has "love" in its title?
### CONTEXT
CREATE TABLE song (artist_name VARCHAR, song_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)
### ANSWER
SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.song_name LIKE "%love%"
|
{
"answer": "SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.song_name LIKE \"%love%\"",
"context": "CREATE TABLE song (artist_name VARCHAR, song_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)",
"question": "What is the name and country of origin of the artist who released a song that has \"love\" in its title?"
}
|
### QUESTION
Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?
### CONTEXT
CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
### ANSWER
SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = "jhajjar" AND reserved_for___sc___st__none_ = "sc" AND constituency_number < 66
|
{
"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = \"jhajjar\" AND reserved_for___sc___st__none_ = \"sc\" AND constituency_number < 66",
"context": "CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)",
"question": "Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?"
}
|
### QUESTION
What are the notes for the athlete from Spain?
### CONTEXT
CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)
### ANSWER
SELECT notes FROM table_name_29 WHERE country = "spain"
|
{
"answer": "SELECT notes FROM table_name_29 WHERE country = \"spain\"",
"context": "CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)",
"question": "What are the notes for the athlete from Spain?"
}
|
### QUESTION
What are all the policy types of the customer that has the most policies listed?
### CONTEXT
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)
### ANSWER
SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1)
|
{
"answer": "SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1)",
"context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)",
"question": "What are all the policy types of the customer that has the most policies listed?"
}
|
### QUESTION
How many tracks are in the AAC audio file media type?
### CONTEXT
CREATE TABLE MEDIATYPE (MediaTypeId VARCHAR, Name VARCHAR); CREATE TABLE TRACK (MediaTypeId VARCHAR)
### ANSWER
SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = "AAC audio file"
|
{
"answer": "SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = \"AAC audio file\"",
"context": "CREATE TABLE MEDIATYPE (MediaTypeId VARCHAR, Name VARCHAR); CREATE TABLE TRACK (MediaTypeId VARCHAR)",
"question": "How many tracks are in the AAC audio file media type?"
}
|
### QUESTION
How many years of NBA experience does the player who plays position g for the Portland Trail Blazers?
### CONTEXT
CREATE TABLE table_name_28 (years_of_nba_experience_ VARCHAR, a_ VARCHAR, pos VARCHAR, team VARCHAR)
### ANSWER
SELECT years_of_nba_experience_[a_] FROM table_name_28 WHERE pos = "g" AND team = "portland trail blazers"
|
{
"answer": "SELECT years_of_nba_experience_[a_] FROM table_name_28 WHERE pos = \"g\" AND team = \"portland trail blazers\"",
"context": "CREATE TABLE table_name_28 (years_of_nba_experience_ VARCHAR, a_ VARCHAR, pos VARCHAR, team VARCHAR)",
"question": "How many years of NBA experience does the player who plays position g for the Portland Trail Blazers?"
}
|
### QUESTION
What are the drivers' last names and id who had 11 pit stops and participated in more than 5 race results?
### CONTEXT
CREATE TABLE drivers (surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)
### ANSWER
SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) = 11 INTERSECT SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5
|
{
"answer": "SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) = 11 INTERSECT SELECT T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5",
"context": "CREATE TABLE drivers (surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)",
"question": "What are the drivers' last names and id who had 11 pit stops and participated in more than 5 race results?"
}
|
### QUESTION
What date did the VFL play Punt Road Oval?
### CONTEXT
CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_90 WHERE venue = "punt road oval"
|
{
"answer": "SELECT date FROM table_name_90 WHERE venue = \"punt road oval\"",
"context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)",
"question": "What date did the VFL play Punt Road Oval?"
}
|
### QUESTION
How many chart runs had a debut position of more than 7 when peak position was 11?
### CONTEXT
CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)
### ANSWER
SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11
|
{
"answer": "SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11",
"context": "CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)",
"question": "How many chart runs had a debut position of more than 7 when peak position was 11?"
}
|
### QUESTION
Which college/junior/club team (league) did Brett Sonne play in?
### CONTEXT
CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = "brett sonne"
|
{
"answer": "SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = \"brett sonne\"",
"context": "CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)",
"question": "Which college/junior/club team (league) did Brett Sonne play in?"
}
|
### QUESTION
What town is Volleyball Sportiv Complex (3 500) located in?
### CONTEXT
CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)
### ANSWER
SELECT town FROM table_14015965_1 WHERE arena__capacity_ = "Volleyball Sportiv Complex (3 500)"
|
{
"answer": "SELECT town FROM table_14015965_1 WHERE arena__capacity_ = \"Volleyball Sportiv Complex (3 500)\"",
"context": "CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR)",
"question": "What town is Volleyball Sportiv Complex (3 500) located in?"
}
|
### QUESTION
Which Tie # has an Away team of slough town?
### CONTEXT
CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)
### ANSWER
SELECT tie_no FROM table_name_66 WHERE away_team = "slough town"
|
{
"answer": "SELECT tie_no FROM table_name_66 WHERE away_team = \"slough town\"",
"context": "CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)",
"question": "Which Tie # has an Away team of slough town?"
}
|
### QUESTION
What is the average grid with brm and under 63 laps?
### CONTEXT
CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_33 WHERE constructor = "brm" AND laps < 63
|
{
"answer": "SELECT AVG(grid) FROM table_name_33 WHERE constructor = \"brm\" AND laps < 63",
"context": "CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR)",
"question": "What is the average grid with brm and under 63 laps?"
}
|
### QUESTION
Which cities are in European countries where English is not the official language?
### CONTEXT
CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE country (Code VARCHAR, Continent VARCHAR, Name VARCHAR)
### ANSWER
SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND NOT T1.Name IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')
|
{
"answer": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND NOT T1.Name IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')",
"context": "CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE country (Code VARCHAR, Continent VARCHAR, Name VARCHAR)",
"question": "Which cities are in European countries where English is not the official language?"
}
|
### QUESTION
Which Total has a Finish of t59?
### CONTEXT
CREATE TABLE table_name_81 (total INTEGER, finish VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_81 WHERE finish = "t59"
|
{
"answer": "SELECT MIN(total) FROM table_name_81 WHERE finish = \"t59\"",
"context": "CREATE TABLE table_name_81 (total INTEGER, finish VARCHAR)",
"question": "Which Total has a Finish of t59?"
}
|
### QUESTION
When Tujunga is moderate, what is La Crescenta-Montrose?
### CONTEXT
CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR)
### ANSWER
SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = "moderate"
|
{
"answer": "SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = \"moderate\"",
"context": "CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR)",
"question": "When Tujunga is moderate, what is La Crescenta-Montrose?"
}
|
### QUESTION
What Score has a Place of t6, a Country of united states, and a Player of fred couples?
### CONTEXT
CREATE TABLE table_name_7 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
### ANSWER
SELECT score FROM table_name_7 WHERE place = "t6" AND country = "united states" AND player = "fred couples"
|
{
"answer": "SELECT score FROM table_name_7 WHERE place = \"t6\" AND country = \"united states\" AND player = \"fred couples\"",
"context": "CREATE TABLE table_name_7 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)",
"question": "What Score has a Place of t6, a Country of united states, and a Player of fred couples?"
}
|
### QUESTION
What's the Nationality of Round 8 Vancouver Canucks NHL Team of Swift Current Broncos (WHL)?
### CONTEXT
CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR, nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)
### ANSWER
SELECT nationality FROM table_name_12 WHERE nhl_team = "vancouver canucks" AND college_junior_club_team__league_ = "swift current broncos (whl)" AND round = 8
|
{
"answer": "SELECT nationality FROM table_name_12 WHERE nhl_team = \"vancouver canucks\" AND college_junior_club_team__league_ = \"swift current broncos (whl)\" AND round = 8",
"context": "CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR, nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)",
"question": "What's the Nationality of Round 8 Vancouver Canucks NHL Team of Swift Current Broncos (WHL)?"
}
|
### QUESTION
What the highest Year with a Remixed by Laurent Boutonnat?
### CONTEXT
CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat"
|
{
"answer": "SELECT MAX(year) FROM table_name_38 WHERE remixed_by = \"laurent boutonnat\"",
"context": "CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR)",
"question": "What the highest Year with a Remixed by Laurent Boutonnat?"
}
|
### QUESTION
Name the result for total attendance-regular season
### CONTEXT
CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)
### ANSWER
SELECT result_games FROM table_21436373_11 WHERE type_of_record = "Total attendance-Regular season"
|
{
"answer": "SELECT result_games FROM table_21436373_11 WHERE type_of_record = \"Total attendance-Regular season\"",
"context": "CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)",
"question": "Name the result for total attendance-regular season"
}
|
### QUESTION
What is the round of the pf position player from 1996 and the college/high school/club mississippi state?
### CONTEXT
CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)
### ANSWER
SELECT round FROM table_name_37 WHERE position = "pf" AND year = 1996 AND college_high_school_club = "mississippi state"
|
{
"answer": "SELECT round FROM table_name_37 WHERE position = \"pf\" AND year = 1996 AND college_high_school_club = \"mississippi state\"",
"context": "CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)",
"question": "What is the round of the pf position player from 1996 and the college/high school/club mississippi state?"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.