text
stringlengths
150
1.06k
source
dict
### QUESTION What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed? ### CONTEXT CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR) ### ANSWER SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = "unnamed"</s>
{ "answer": "SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = \"unnamed\"", "context": "CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)", "question": "What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed?" }
### QUESTION What is Fractievoorzitter, when Lijsttrekker is "No Elections", and when Year is after 2005? ### CONTEXT CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR) ### ANSWER SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = "no elections" AND year > 2005</s>
{ "answer": "SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = \"no elections\" AND year > 2005", "context": "CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR)", "question": "What is Fractievoorzitter, when Lijsttrekker is \"No Elections\", and when Year is after 2005?" }
### QUESTION Who was the opponents in the final on January 5, 2003, on a hard surface? ### CONTEXT CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### ANSWER SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003"</s>
{ "answer": "SELECT opponents_in_the_final FROM table_name_19 WHERE surface = \"hard\" AND date = \"january 5, 2003\"", "context": "CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)", "question": "Who was the opponents in the final on January 5, 2003, on a hard surface?" }
### QUESTION What is Cabinet, when Year is before 2001, when Lijsttrekker is "No Elections", when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "S. Van Der Loo"? ### CONTEXT CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR) ### ANSWER SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = "no elections" AND fractievoorzitter = "hans van mierlo" AND chair = "s. van der loo"</s>
{ "answer": "SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = \"no elections\" AND fractievoorzitter = \"hans van mierlo\" AND chair = \"s. van der loo\"", "context": "CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR)", "question": "What is Cabinet, when Year is before 2001, when Lijsttrekker is \"No Elections\", when Fractievoorzitter is \"Hans Van Mierlo\", and when Chair is \"S. Van Der Loo\"?" }
### QUESTION What is the status for tennis at cleveland state who has yes for swimming, golf and soccer? ### CONTEXT CREATE TABLE table_name_78 (tennis VARCHAR, school VARCHAR, swimming VARCHAR, golf VARCHAR, soccer VARCHAR) ### ANSWER SELECT tennis FROM table_name_78 WHERE golf = "yes" AND soccer = "yes" AND swimming = "yes" AND school = "cleveland state"</s>
{ "answer": "SELECT tennis FROM table_name_78 WHERE golf = \"yes\" AND soccer = \"yes\" AND swimming = \"yes\" AND school = \"cleveland state\"", "context": "CREATE TABLE table_name_78 (tennis VARCHAR, school VARCHAR, swimming VARCHAR, golf VARCHAR, soccer VARCHAR)", "question": "What is the status for tennis at cleveland state who has yes for swimming, golf and soccer?" }
### QUESTION What is the average pick for Florida State? ### CONTEXT CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR) ### ANSWER SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = "florida state"</s>
{ "answer": "SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = \"florida state\"", "context": "CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR)", "question": "What is the average pick for Florida State?" }
### QUESTION With an overall record of MU, 15-8 what is the at neutral site? ### CONTEXT CREATE TABLE table_name_87 (at_neutral_site VARCHAR, overall_record VARCHAR) ### ANSWER SELECT at_neutral_site FROM table_name_87 WHERE overall_record = "mu, 15-8"</s>
{ "answer": "SELECT at_neutral_site FROM table_name_87 WHERE overall_record = \"mu, 15-8\"", "context": "CREATE TABLE table_name_87 (at_neutral_site VARCHAR, overall_record VARCHAR)", "question": "With an overall record of MU, 15-8 what is the at neutral site?" }
### QUESTION For what current streak is KU, 8-2 under last 10 meetings? ### CONTEXT CREATE TABLE table_name_28 (current_streak VARCHAR, last_10_meetings VARCHAR) ### ANSWER SELECT current_streak FROM table_name_28 WHERE last_10_meetings = "ku, 8-2"</s>
{ "answer": "SELECT current_streak FROM table_name_28 WHERE last_10_meetings = \"ku, 8-2\"", "context": "CREATE TABLE table_name_28 (current_streak VARCHAR, last_10_meetings VARCHAR)", "question": "For what current streak is KU, 8-2 under last 10 meetings?" }
### QUESTION How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0? ### CONTEXT CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0</s>
{ "answer": "SELECT COUNT(total) FROM table_name_37 WHERE player = \"ahmad fouzee masuri\" AND fa_cup > 0", "context": "CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR)", "question": "How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?" }
### QUESTION Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8? ### CONTEXT CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR) ### ANSWER SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8</s>
{ "answer": "SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8", "context": "CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR)", "question": "Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?" }
### QUESTION What team was the opponent when the round was sf? ### CONTEXT CREATE TABLE table_name_84 (opponent VARCHAR, round VARCHAR) ### ANSWER SELECT opponent FROM table_name_84 WHERE round = "sf"</s>
{ "answer": "SELECT opponent FROM table_name_84 WHERE round = \"sf\"", "context": "CREATE TABLE table_name_84 (opponent VARCHAR, round VARCHAR)", "question": "What team was the opponent when the round was sf?" }
### QUESTION What is the number of people in attendance when venue shows A, and Di Matteo, M. Hughes were the scorers? ### CONTEXT CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, scorers VARCHAR) ### ANSWER SELECT SUM(attendance) FROM table_name_99 WHERE venue = "a" AND scorers = "di matteo, m. hughes"</s>
{ "answer": "SELECT SUM(attendance) FROM table_name_99 WHERE venue = \"a\" AND scorers = \"di matteo, m. hughes\"", "context": "CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, scorers VARCHAR)", "question": "What is the number of people in attendance when venue shows A, and Di Matteo, M. Hughes were the scorers?" }
### QUESTION What was Craig Stadler's score? ### CONTEXT CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR) ### ANSWER SELECT score FROM table_name_80 WHERE player = "craig stadler"</s>
{ "answer": "SELECT score FROM table_name_80 WHERE player = \"craig stadler\"", "context": "CREATE TABLE table_name_80 (score VARCHAR, player VARCHAR)", "question": "What was Craig Stadler's score?" }
### QUESTION Total larger than 285, and a Finish of t30 belongs to what player? ### CONTEXT CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR) ### ANSWER SELECT player FROM table_name_83 WHERE total > 285 AND finish = "t30"</s>
{ "answer": "SELECT player FROM table_name_83 WHERE total > 285 AND finish = \"t30\"", "context": "CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR)", "question": "Total larger than 285, and a Finish of t30 belongs to what player?" }
### QUESTION Which player for a team with an 18-20 record had the most rebounds in a game? ### CONTEXT CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR) ### ANSWER SELECT high_rebounds FROM table_name_38 WHERE record = "18-20"</s>
{ "answer": "SELECT high_rebounds FROM table_name_38 WHERE record = \"18-20\"", "context": "CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR)", "question": "Which player for a team with an 18-20 record had the most rebounds in a game?" }
### QUESTION What is the to par for Leonard Thompson from the United States with a place of T6? ### CONTEXT CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) ### ANSWER SELECT to_par FROM table_name_3 WHERE place = "t6" AND country = "united states" AND player = "leonard thompson"</s>
{ "answer": "SELECT to_par FROM table_name_3 WHERE place = \"t6\" AND country = \"united states\" AND player = \"leonard thompson\"", "context": "CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)", "question": "What is the to par for Leonard Thompson from the United States with a place of T6?" }
### QUESTION What's the score for Toronto Maple Leafs on November 10? ### CONTEXT CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10"</s>
{ "answer": "SELECT score FROM table_name_49 WHERE home = \"toronto maple leafs\" AND date = \"november 10\"", "context": "CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR)", "question": "What's the score for Toronto Maple Leafs on November 10?" }
### QUESTION What is the run 2 of athlete Maria Orlova from Russia? ### CONTEXT CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR) ### ANSWER SELECT SUM(run_2) FROM table_name_24 WHERE country = "russia" AND athlete = "maria orlova"</s>
{ "answer": "SELECT SUM(run_2) FROM table_name_24 WHERE country = \"russia\" AND athlete = \"maria orlova\"", "context": "CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR)", "question": "What is the run 2 of athlete Maria Orlova from Russia?" }
### QUESTION What is the minimum D (max) when the Morse Taper number is less than 0? ### CONTEXT CREATE TABLE table_name_47 (d__max_ INTEGER, morse_taper_number INTEGER) ### ANSWER SELECT MIN(d__max_) FROM table_name_47 WHERE morse_taper_number < 0</s>
{ "answer": "SELECT MIN(d__max_) FROM table_name_47 WHERE morse_taper_number < 0", "context": "CREATE TABLE table_name_47 (d__max_ INTEGER, morse_taper_number INTEGER)", "question": "What is the minimum D (max) when the Morse Taper number is less than 0?" }
### QUESTION When was the finale played when the show premiered on September 24, 2002? ### CONTEXT CREATE TABLE table_name_62 (finale VARCHAR, premiere VARCHAR) ### ANSWER SELECT finale FROM table_name_62 WHERE premiere = "september 24, 2002"</s>
{ "answer": "SELECT finale FROM table_name_62 WHERE premiere = \"september 24, 2002\"", "context": "CREATE TABLE table_name_62 (finale VARCHAR, premiere VARCHAR)", "question": "When was the finale played when the show premiered on September 24, 2002?" }
### QUESTION What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries? ### CONTEXT CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR) ### ANSWER SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = "kimi räikkönen" AND entries > 194</s>
{ "answer": "SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = \"kimi räikkönen\" AND entries > 194", "context": "CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR)", "question": "What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?" }
### QUESTION What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0? ### CONTEXT CREATE TABLE table_name_75 (average_points_per_race_entered INTEGER, points VARCHAR, average_pre_2010 VARCHAR) ### ANSWER SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0</s>
{ "answer": "SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0", "context": "CREATE TABLE table_name_75 (average_points_per_race_entered INTEGER, points VARCHAR, average_pre_2010 VARCHAR)", "question": "What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?" }
### QUESTION Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0? ### CONTEXT CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR) ### ANSWER SELECT losses FROM table_name_95 WHERE season > 1941 AND team = "hamilton wildcats" AND ties = 0</s>
{ "answer": "SELECT losses FROM table_name_95 WHERE season > 1941 AND team = \"hamilton wildcats\" AND ties = 0", "context": "CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR)", "question": "Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0?" }
### QUESTION Which Score has a Home team of windsor & eton? ### CONTEXT CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR) ### ANSWER SELECT score FROM table_name_30 WHERE home_team = "windsor & eton"</s>
{ "answer": "SELECT score FROM table_name_30 WHERE home_team = \"windsor & eton\"", "context": "CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)", "question": "Which Score has a Home team of windsor & eton?" }
### QUESTION In the game that has a score of 71-71-70-73=285 what is the to par? ### CONTEXT CREATE TABLE table_name_79 (to_par VARCHAR, score VARCHAR) ### ANSWER SELECT to_par FROM table_name_79 WHERE score = 71 - 71 - 70 - 73 = 285</s>
{ "answer": "SELECT to_par FROM table_name_79 WHERE score = 71 - 71 - 70 - 73 = 285", "context": "CREATE TABLE table_name_79 (to_par VARCHAR, score VARCHAR)", "question": "In the game that has a score of 71-71-70-73=285 what is the to par?" }
### QUESTION What is the lowest 1994-1995, when Points is 145, and when Played is less than 114? ### CONTEXT ### ANSWER SELECT MIN(*) FROM table_name_2 WHERE points = 145 AND played < 114</s>
{ "answer": "SELECT MIN(*) FROM table_name_2 WHERE points = 145 AND played < 114", "context": "", "question": "What is the lowest 1994-1995, when Points is 145, and when Played is less than 114?" }
### QUESTION Which opponent was present on April 14? ### CONTEXT CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR) ### ANSWER SELECT opponent FROM table_name_17 WHERE date = "april 14"</s>
{ "answer": "SELECT opponent FROM table_name_17 WHERE date = \"april 14\"", "context": "CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)", "question": "Which opponent was present on April 14?" }
### QUESTION What is the average number of rounds for winner Rafael Cavalcante? ### CONTEXT CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_37 WHERE winner = "rafael cavalcante"</s>
{ "answer": "SELECT AVG(round) FROM table_name_37 WHERE winner = \"rafael cavalcante\"", "context": "CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR)", "question": "What is the average number of rounds for winner Rafael Cavalcante?" }
### QUESTION What is the sum of points values that are associated with 0 losses and more than 8 games? ### CONTEXT CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8</s>
{ "answer": "SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8", "context": "CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR)", "question": "What is the sum of points values that are associated with 0 losses and more than 8 games?" }
### QUESTION What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw? ### CONTEXT CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR) ### ANSWER SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1</s>
{ "answer": "SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1", "context": "CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)", "question": "What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw?" }
### QUESTION For how many years did Detroit have a passenger fare of $307.29? ### CONTEXT CREATE TABLE table_name_99 (year INTEGER, detroit__dtw_ VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_99 WHERE detroit__dtw_ = "$307.29"</s>
{ "answer": "SELECT SUM(year) FROM table_name_99 WHERE detroit__dtw_ = \"$307.29\"", "context": "CREATE TABLE table_name_99 (year INTEGER, detroit__dtw_ VARCHAR)", "question": "For how many years did Detroit have a passenger fare of $307.29?" }
### QUESTION Which Club has a League Cup goals of 0, and a League goals of 11, and a Scorer of joe laidlaw? ### CONTEXT CREATE TABLE table_name_74 (club VARCHAR, scorer VARCHAR, league_cup_goals VARCHAR, league_goals VARCHAR) ### ANSWER SELECT club FROM table_name_74 WHERE league_cup_goals = 0 AND league_goals = "11" AND scorer = "joe laidlaw"</s>
{ "answer": "SELECT club FROM table_name_74 WHERE league_cup_goals = 0 AND league_goals = \"11\" AND scorer = \"joe laidlaw\"", "context": "CREATE TABLE table_name_74 (club VARCHAR, scorer VARCHAR, league_cup_goals VARCHAR, league_goals VARCHAR)", "question": "Which Club has a League Cup goals of 0, and a League goals of 11, and a Scorer of joe laidlaw?" }
### QUESTION Which League Cup goals have a Scorer of ken houghton, and an FA Cup goals smaller than 0? ### CONTEXT CREATE TABLE table_name_93 (league_cup_goals INTEGER, scorer VARCHAR, fa_cup_goals VARCHAR) ### ANSWER SELECT MAX(league_cup_goals) FROM table_name_93 WHERE scorer = "ken houghton" AND fa_cup_goals < 0</s>
{ "answer": "SELECT MAX(league_cup_goals) FROM table_name_93 WHERE scorer = \"ken houghton\" AND fa_cup_goals < 0", "context": "CREATE TABLE table_name_93 (league_cup_goals INTEGER, scorer VARCHAR, fa_cup_goals VARCHAR)", "question": "Which League Cup goals have a Scorer of ken houghton, and an FA Cup goals smaller than 0?" }
### 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</s>
{ "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 What was the association for Indonesian Idol after 2005 with a Nominated Result? ### CONTEXT CREATE TABLE table_name_39 (association VARCHAR, result VARCHAR, nominee VARCHAR, year VARCHAR) ### ANSWER SELECT association FROM table_name_39 WHERE nominee = "indonesian idol" AND year > 2005 AND result = "nominated"</s>
{ "answer": "SELECT association FROM table_name_39 WHERE nominee = \"indonesian idol\" AND year > 2005 AND result = \"nominated\"", "context": "CREATE TABLE table_name_39 (association VARCHAR, result VARCHAR, nominee VARCHAR, year VARCHAR)", "question": "What was the association for Indonesian Idol after 2005 with a Nominated Result?" }
### QUESTION How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10? ### CONTEXT CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR) ### ANSWER SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10</s>
{ "answer": "SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10", "context": "CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR)", "question": "How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?" }
### QUESTION What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales? ### CONTEXT CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR) ### ANSWER SELECT loss FROM table_name_56 WHERE opponent = "chinatrust whales" AND save = "miguel saladin"</s>
{ "answer": "SELECT loss FROM table_name_56 WHERE opponent = \"chinatrust whales\" AND save = \"miguel saladin\"", "context": "CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR)", "question": "What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales?" }
### QUESTION what game had a score of 86-71 ### CONTEXT CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR) ### ANSWER SELECT attendance FROM table_name_8 WHERE record = "86-71"</s>
{ "answer": "SELECT attendance FROM table_name_8 WHERE record = \"86-71\"", "context": "CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)", "question": "what game had a score of 86-71" }
### QUESTION What was the position of the Slavia team in 1998? ### CONTEXT CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR) ### ANSWER SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia"</s>
{ "answer": "SELECT position_in_1998 FROM table_name_10 WHERE team = \"slavia\"", "context": "CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR)", "question": "What was the position of the Slavia team in 1998?" }
### QUESTION What is Rider, when Grid is less than 16, when Laps is 21, when Manufacturer is Honda, and when Time is +10.583? ### CONTEXT CREATE TABLE table_name_67 (rider VARCHAR, time VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT rider FROM table_name_67 WHERE grid < 16 AND laps = 21 AND manufacturer = "honda" AND time = "+10.583"</s>
{ "answer": "SELECT rider FROM table_name_67 WHERE grid < 16 AND laps = 21 AND manufacturer = \"honda\" AND time = \"+10.583\"", "context": "CREATE TABLE table_name_67 (rider VARCHAR, time VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "What is Rider, when Grid is less than 16, when Laps is 21, when Manufacturer is Honda, and when Time is +10.583?" }
### QUESTION Which Finalist has a Semi finalists of monica seles conchita martínez? ### CONTEXT CREATE TABLE table_name_69 (finalist VARCHAR, semi_finalists VARCHAR) ### ANSWER SELECT finalist FROM table_name_69 WHERE semi_finalists = "monica seles conchita martínez"</s>
{ "answer": "SELECT finalist FROM table_name_69 WHERE semi_finalists = \"monica seles conchita martínez\"", "context": "CREATE TABLE table_name_69 (finalist VARCHAR, semi_finalists VARCHAR)", "question": "Which Finalist has a Semi finalists of monica seles conchita martínez?" }
### QUESTION Which Tournament has a Semi finalists of martina hingis joannette kruger? ### CONTEXT CREATE TABLE table_name_62 (tournament VARCHAR, semi_finalists VARCHAR) ### ANSWER SELECT tournament FROM table_name_62 WHERE semi_finalists = "martina hingis joannette kruger"</s>
{ "answer": "SELECT tournament FROM table_name_62 WHERE semi_finalists = \"martina hingis joannette kruger\"", "context": "CREATE TABLE table_name_62 (tournament VARCHAR, semi_finalists VARCHAR)", "question": "Which Tournament has a Semi finalists of martina hingis joannette kruger?" }
### QUESTION Who was a linebacker at Tennessee? ### CONTEXT CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR) ### ANSWER SELECT player_name FROM table_name_64 WHERE position = "linebacker" AND college = "tennessee"</s>
{ "answer": "SELECT player_name FROM table_name_64 WHERE position = \"linebacker\" AND college = \"tennessee\"", "context": "CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR)", "question": "Who was a linebacker at Tennessee?" }
### QUESTION What is Fleet Number(s), when Quantity Preserved is "0", when Quantity Made is 1, and when Class is "Z"? ### CONTEXT CREATE TABLE table_name_95 (fleet_number_s_ VARCHAR, class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR) ### ANSWER SELECT fleet_number_s_ FROM table_name_95 WHERE quantity_preserved = "0" AND quantity_made = "1" AND class = "z"</s>
{ "answer": "SELECT fleet_number_s_ FROM table_name_95 WHERE quantity_preserved = \"0\" AND quantity_made = \"1\" AND class = \"z\"", "context": "CREATE TABLE table_name_95 (fleet_number_s_ VARCHAR, class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR)", "question": "What is Fleet Number(s), when Quantity Preserved is \"0\", when Quantity Made is 1, and when Class is \"Z\"?" }
### QUESTION What is the Result of the AFG Arena, St. Gallen Competition with a Score of 1–0? ### CONTEXT CREATE TABLE table_name_92 (result VARCHAR, venue VARCHAR, score VARCHAR) ### ANSWER SELECT result FROM table_name_92 WHERE venue = "afg arena, st. gallen" AND score = "1–0"</s>
{ "answer": "SELECT result FROM table_name_92 WHERE venue = \"afg arena, st. gallen\" AND score = \"1–0\"", "context": "CREATE TABLE table_name_92 (result VARCHAR, venue VARCHAR, score VARCHAR)", "question": "What is the Result of the AFG Arena, St. Gallen Competition with a Score of 1–0?" }
### QUESTION Which winning team has a winning pitcher of Chris Young and was played in Arlington? ### CONTEXT CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR) ### ANSWER SELECT winning_team FROM table_name_46 WHERE winning_pitcher = "chris young" AND location = "arlington"</s>
{ "answer": "SELECT winning_team FROM table_name_46 WHERE winning_pitcher = \"chris young\" AND location = \"arlington\"", "context": "CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR)", "question": "Which winning team has a winning pitcher of Chris Young and was played in Arlington?" }
### QUESTION What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson? ### CONTEXT CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR) ### ANSWER SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesperson = "unknown"</s>
{ "answer": "SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = \"pierre tchernia\" AND spokesperson = \"unknown\"", "context": "CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR)", "question": "What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson?" }
### QUESTION What is the semi-final television commentator status in 1962 with an unknown spokesperson? ### CONTEXT CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR) ### ANSWER SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = "unknown" AND year_s_ = 1962</s>
{ "answer": "SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = \"unknown\" AND year_s_ = 1962", "context": "CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR)", "question": "What is the semi-final television commentator status in 1962 with an unknown spokesperson?" }
### QUESTION WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54? ### CONTEXT CREATE TABLE table_name_77 (elevation__ft_ INTEGER, isolation VARCHAR, range VARCHAR, peak_name VARCHAR) ### ANSWER SELECT AVG(elevation__ft_) FROM table_name_77 WHERE range = "unaka mountains" AND peak_name = "roan high bluff" AND isolation > 1.54</s>
{ "answer": "SELECT AVG(elevation__ft_) FROM table_name_77 WHERE range = \"unaka mountains\" AND peak_name = \"roan high bluff\" AND isolation > 1.54", "context": "CREATE TABLE table_name_77 (elevation__ft_ INTEGER, isolation VARCHAR, range VARCHAR, peak_name VARCHAR)", "question": "WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54?" }
### QUESTION What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? ### CONTEXT CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) ### ANSWER SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam"</s>
{ "answer": "SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = \"dave\" AND spokesperson = \"marie myriam\"", "context": "CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR)", "question": "What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson?" }
### QUESTION what is the rank when bronze is less than 1 and silver is less than 1? ### CONTEXT CREATE TABLE table_name_52 (rank VARCHAR, bronze VARCHAR, silver VARCHAR) ### ANSWER SELECT rank FROM table_name_52 WHERE bronze < 1 AND silver < 1</s>
{ "answer": "SELECT rank FROM table_name_52 WHERE bronze < 1 AND silver < 1", "context": "CREATE TABLE table_name_52 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)", "question": "what is the rank when bronze is less than 1 and silver is less than 1?" }
### QUESTION What is the production code for the episode that had 1.32 million U.S. viewers? ### CONTEXT CREATE TABLE table_22347090_6 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### ANSWER SELECT production_code FROM table_22347090_6 WHERE us_viewers__million_ = "1.32"</s>
{ "answer": "SELECT production_code FROM table_22347090_6 WHERE us_viewers__million_ = \"1.32\"", "context": "CREATE TABLE table_22347090_6 (production_code VARCHAR, us_viewers__million_ VARCHAR)", "question": "What is the production code for the episode that had 1.32 million U.S. viewers?" }
### QUESTION What is the total enrollment for an affiliation of public, and was founded before 1866? ### CONTEXT CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) ### ANSWER SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866</s>
{ "answer": "SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = \"public\" AND founded < 1866", "context": "CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)", "question": "What is the total enrollment for an affiliation of public, and was founded before 1866?" }
### QUESTION What is the name of the away captain when the game was at Adelaide Oval? ### CONTEXT CREATE TABLE table_name_5 (away_captain VARCHAR, venue VARCHAR) ### ANSWER SELECT away_captain FROM table_name_5 WHERE venue = "adelaide oval"</s>
{ "answer": "SELECT away_captain FROM table_name_5 WHERE venue = \"adelaide oval\"", "context": "CREATE TABLE table_name_5 (away_captain VARCHAR, venue VARCHAR)", "question": "What is the name of the away captain when the game was at Adelaide Oval?" }
### QUESTION What is the total enrollment for a private/catholic affiliation and founded after 1842? ### CONTEXT CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) ### ANSWER SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = "private/catholic" AND founded > 1842</s>
{ "answer": "SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = \"private/catholic\" AND founded > 1842", "context": "CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)", "question": "What is the total enrollment for a private/catholic affiliation and founded after 1842?" }
### QUESTION What was the winning score when the runner-up was Beth Daniel and the margin of victory was 7 strokes? ### CONTEXT CREATE TABLE table_name_42 (winning_score VARCHAR, runner_s__up VARCHAR, margin_of_victory VARCHAR) ### ANSWER SELECT winning_score FROM table_name_42 WHERE runner_s__up = "beth daniel" AND margin_of_victory = "7 strokes"</s>
{ "answer": "SELECT winning_score FROM table_name_42 WHERE runner_s__up = \"beth daniel\" AND margin_of_victory = \"7 strokes\"", "context": "CREATE TABLE table_name_42 (winning_score VARCHAR, runner_s__up VARCHAR, margin_of_victory VARCHAR)", "question": "What was the winning score when the runner-up was Beth Daniel and the margin of victory was 7 strokes?" }
### QUESTION What was the winning score when the margin of victory was a playoff for the Tournament of safeco classic? ### CONTEXT CREATE TABLE table_name_4 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### ANSWER SELECT winning_score FROM table_name_4 WHERE margin_of_victory = "playoff" AND tournament = "safeco classic"</s>
{ "answer": "SELECT winning_score FROM table_name_4 WHERE margin_of_victory = \"playoff\" AND tournament = \"safeco classic\"", "context": "CREATE TABLE table_name_4 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)", "question": "What was the winning score when the margin of victory was a playoff for the Tournament of safeco classic?" }
### QUESTION When did eleonor magdalene of the palatinate-neuburg become duchess? ### CONTEXT CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR) ### ANSWER SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg"</s>
{ "answer": "SELECT became_duchess FROM table_name_77 WHERE name = \"eleonor magdalene of the palatinate-neuburg\"", "context": "CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR)", "question": "When did eleonor magdalene of the palatinate-neuburg become duchess?" }
### QUESTION What is Player, when Place is "T5", and when Score is "69-72=141"? ### CONTEXT CREATE TABLE table_name_88 (player VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_88 WHERE place = "t5" AND score = 69 - 72 = 141</s>
{ "answer": "SELECT player FROM table_name_88 WHERE place = \"t5\" AND score = 69 - 72 = 141", "context": "CREATE TABLE table_name_88 (player VARCHAR, place VARCHAR, score VARCHAR)", "question": "What is Player, when Place is \"T5\", and when Score is \"69-72=141\"?" }
### QUESTION What type of disaster is rms atlantic categorized in that was located in Nova Scotia? ### CONTEXT CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR) ### ANSWER SELECT type FROM table_name_62 WHERE location = "nova scotia" AND disaster = "rms atlantic"</s>
{ "answer": "SELECT type FROM table_name_62 WHERE location = \"nova scotia\" AND disaster = \"rms atlantic\"", "context": "CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR)", "question": "What type of disaster is rms atlantic categorized in that was located in Nova Scotia?" }
### QUESTION What bike has an accident time, less than 9 laps, and a 5 grid? ### CONTEXT CREATE TABLE table_name_36 (bike VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR) ### ANSWER SELECT bike FROM table_name_36 WHERE time = "accident" AND laps < 9 AND grid = 5</s>
{ "answer": "SELECT bike FROM table_name_36 WHERE time = \"accident\" AND laps < 9 AND grid = 5", "context": "CREATE TABLE table_name_36 (bike VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR)", "question": "What bike has an accident time, less than 9 laps, and a 5 grid?" }
### QUESTION How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema? ### CONTEXT CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_94 WHERE producer = "star cinema" AND director = "rory quintos" AND title = "kay tagal kang hinintay"</s>
{ "answer": "SELECT COUNT(year) FROM table_name_94 WHERE producer = \"star cinema\" AND director = \"rory quintos\" AND title = \"kay tagal kang hinintay\"", "context": "CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR)", "question": "How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?" }
### QUESTION When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)? ### CONTEXT CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR) ### ANSWER SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = "baltimore county, howard" AND committee = "environmental matters (vice-chair)"</s>
{ "answer": "SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = \"baltimore county, howard\" AND committee = \"environmental matters (vice-chair)\"", "context": "CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR)", "question": "When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?" }
### QUESTION What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County? ### CONTEXT CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR) ### ANSWER SELECT party FROM table_name_50 WHERE counties_represented = "howard" AND delegate = "turner, frank s. frank s. turner"</s>
{ "answer": "SELECT party FROM table_name_50 WHERE counties_represented = \"howard\" AND delegate = \"turner, frank s. frank s. turner\"", "context": "CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR)", "question": "What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County?" }
### QUESTION For the movie directed by Martin Campbell at Columbia pictures with a ranking larger than 8, what is its worldwide gross? ### CONTEXT CREATE TABLE table_name_43 (worldwide_gross VARCHAR, director_s_ VARCHAR, rank VARCHAR, studio VARCHAR) ### ANSWER SELECT worldwide_gross FROM table_name_43 WHERE rank > 8 AND studio = "columbia pictures" AND director_s_ = "martin campbell"</s>
{ "answer": "SELECT worldwide_gross FROM table_name_43 WHERE rank > 8 AND studio = \"columbia pictures\" AND director_s_ = \"martin campbell\"", "context": "CREATE TABLE table_name_43 (worldwide_gross VARCHAR, director_s_ VARCHAR, rank VARCHAR, studio VARCHAR)", "question": "For the movie directed by Martin Campbell at Columbia pictures with a ranking larger than 8, what is its worldwide gross?" }
### QUESTION What is the event when the method was submission (armbar), and Jeff Gibson was the opponent? ### CONTEXT CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR) ### ANSWER SELECT event FROM table_name_67 WHERE method = "submission (armbar)" AND opponent = "jeff gibson"</s>
{ "answer": "SELECT event FROM table_name_67 WHERE method = \"submission (armbar)\" AND opponent = \"jeff gibson\"", "context": "CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR)", "question": "What is the event when the method was submission (armbar), and Jeff Gibson was the opponent?" }
### QUESTION what player matched up with 9 ### CONTEXT CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR) ### ANSWER SELECT player FROM table_name_78 WHERE matches = "9"</s>
{ "answer": "SELECT player FROM table_name_78 WHERE matches = \"9\"", "context": "CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR)", "question": "what player matched up with 9" }
### QUESTION What is the 2nd leg of the Internacional Team 1? ### CONTEXT CREATE TABLE table_name_48 (team_1 VARCHAR) ### ANSWER SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = "internacional"</s>
{ "answer": "SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = \"internacional\"", "context": "CREATE TABLE table_name_48 (team_1 VARCHAR)", "question": "What is the 2nd leg of the Internacional Team 1?" }
### QUESTION What is Highest Attendance, when Rank is 90, and when Venue Name is Infineon Raceway? ### CONTEXT CREATE TABLE table_name_69 (highest_attendance VARCHAR, rank VARCHAR, venue_name VARCHAR) ### ANSWER SELECT highest_attendance FROM table_name_69 WHERE rank = 90 AND venue_name = "infineon raceway"</s>
{ "answer": "SELECT highest_attendance FROM table_name_69 WHERE rank = 90 AND venue_name = \"infineon raceway\"", "context": "CREATE TABLE table_name_69 (highest_attendance VARCHAR, rank VARCHAR, venue_name VARCHAR)", "question": "What is Highest Attendance, when Rank is 90, and when Venue Name is Infineon Raceway?" }
### QUESTION What was the record when Vancouver was the visitor? ### CONTEXT CREATE TABLE table_name_9 (record VARCHAR, visitor VARCHAR) ### ANSWER SELECT record FROM table_name_9 WHERE visitor = "vancouver"</s>
{ "answer": "SELECT record FROM table_name_9 WHERE visitor = \"vancouver\"", "context": "CREATE TABLE table_name_9 (record VARCHAR, visitor VARCHAR)", "question": "What was the record when Vancouver was the visitor?" }
### QUESTION What is the Place of the Player with a To par of +1 and Score of 74-70-69-72=285? ### CONTEXT CREATE TABLE table_name_97 (place VARCHAR, to_par VARCHAR, score VARCHAR) ### ANSWER SELECT place FROM table_name_97 WHERE to_par = "+1" AND score = 74 - 70 - 69 - 72 = 285</s>
{ "answer": "SELECT place FROM table_name_97 WHERE to_par = \"+1\" AND score = 74 - 70 - 69 - 72 = 285", "context": "CREATE TABLE table_name_97 (place VARCHAR, to_par VARCHAR, score VARCHAR)", "question": "What is the Place of the Player with a To par of +1 and Score of 74-70-69-72=285?" }
### QUESTION What is the total number of episodes where hugh laurie was the 3rd performer? ### CONTEXT CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR) ### ANSWER SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = "hugh laurie"</s>
{ "answer": "SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = \"hugh laurie\"", "context": "CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR)", "question": "What is the total number of episodes where hugh laurie was the 3rd performer?" }
### QUESTION What is the smallest amount of draws when the position is less than 7 and the against is 19? ### CONTEXT CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR) ### ANSWER SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19</s>
{ "answer": "SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19", "context": "CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR)", "question": "What is the smallest amount of draws when the position is less than 7 and the against is 19?" }
### QUESTION What is the least amount of points when there were less than 4 losses and less than 16 against? ### CONTEXT CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16</s>
{ "answer": "SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16", "context": "CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR)", "question": "What is the least amount of points when there were less than 4 losses and less than 16 against?" }
### QUESTION Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28? ### CONTEXT CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) ### ANSWER SELECT score FROM table_name_52 WHERE home = "quebec nordiques" AND visitor = "vancouver blazers" AND date = "february 28"</s>
{ "answer": "SELECT score FROM table_name_52 WHERE home = \"quebec nordiques\" AND visitor = \"vancouver blazers\" AND date = \"february 28\"", "context": "CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)", "question": "Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28?" }
### QUESTION Which Home has a Visitor of quebec nordiques, and a Score of 3–4, and a Record of 8–8–1? ### CONTEXT CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR) ### ANSWER SELECT home FROM table_name_62 WHERE visitor = "quebec nordiques" AND score = "3–4" AND record = "8–8–1"</s>
{ "answer": "SELECT home FROM table_name_62 WHERE visitor = \"quebec nordiques\" AND score = \"3–4\" AND record = \"8–8–1\"", "context": "CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)", "question": "Which Home has a Visitor of quebec nordiques, and a Score of 3–4, and a Record of 8–8–1?" }
### QUESTION What is Date, when Opponent is @ Carolina Hurricanes? ### CONTEXT CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_84 WHERE opponent = "@ carolina hurricanes"</s>
{ "answer": "SELECT date FROM table_name_84 WHERE opponent = \"@ carolina hurricanes\"", "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR)", "question": "What is Date, when Opponent is @ Carolina Hurricanes?" }
### QUESTION What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619? ### CONTEXT CREATE TABLE table_name_68 (game INTEGER, location VARCHAR, attendance VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_68 WHERE location = "philips arena" AND attendance < 15 OFFSET 619</s>
{ "answer": "SELECT MIN(game) FROM table_name_68 WHERE location = \"philips arena\" AND attendance < 15 OFFSET 619", "context": "CREATE TABLE table_name_68 (game INTEGER, location VARCHAR, attendance VARCHAR)", "question": "What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619?" }
### QUESTION Which Democratic has a District smaller than 7, and a Republican of dan mansell? ### CONTEXT CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR) ### ANSWER SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = "dan mansell"</s>
{ "answer": "SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = \"dan mansell\"", "context": "CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR)", "question": "Which Democratic has a District smaller than 7, and a Republican of dan mansell?" }
### QUESTION Can you tell me the Location Attendance that has the High assists of luke ridnour (10), and the Date of december 3? ### CONTEXT CREATE TABLE table_name_10 (location_attendance VARCHAR, high_assists VARCHAR, date VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_10 WHERE high_assists = "luke ridnour (10)" AND date = "december 3"</s>
{ "answer": "SELECT location_attendance FROM table_name_10 WHERE high_assists = \"luke ridnour (10)\" AND date = \"december 3\"", "context": "CREATE TABLE table_name_10 (location_attendance VARCHAR, high_assists VARCHAR, date VARCHAR)", "question": "Can you tell me the Location Attendance that has the High assists of luke ridnour (10), and the Date of december 3?" }
### QUESTION Can you tell me Location Attendance that has the High points of andrew bogut (17)? ### CONTEXT CREATE TABLE table_name_98 (location_attendance VARCHAR, high_points VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_98 WHERE high_points = "andrew bogut (17)"</s>
{ "answer": "SELECT location_attendance FROM table_name_98 WHERE high_points = \"andrew bogut (17)\"", "context": "CREATE TABLE table_name_98 (location_attendance VARCHAR, high_points VARCHAR)", "question": "Can you tell me Location Attendance that has the High points of andrew bogut (17)?" }
### QUESTION What is the State with the imsa gt as the Major Series and a track in new orleans? ### CONTEXT CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR) ### ANSWER SELECT state FROM table_name_23 WHERE major_series = "imsa gt" AND track = "new orleans"</s>
{ "answer": "SELECT state FROM table_name_23 WHERE major_series = \"imsa gt\" AND track = \"new orleans\"", "context": "CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR)", "question": "What is the State with the imsa gt as the Major Series and a track in new orleans?" }
### QUESTION What is the place of plyaer Tim Herron from the United States with a to par of +1? ### CONTEXT CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) ### ANSWER SELECT place FROM table_name_15 WHERE country = "united states" AND to_par = "+1" AND player = "tim herron"</s>
{ "answer": "SELECT place FROM table_name_15 WHERE country = \"united states\" AND to_par = \"+1\" AND player = \"tim herron\"", "context": "CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)", "question": "What is the place of plyaer Tim Herron from the United States with a to par of +1?" }
### QUESTION What is the most unfavorable that is favorable of 34 during 1953 August and has a no opinion score larger than 24? ### CONTEXT CREATE TABLE table_name_34 (unfavorable INTEGER, no_opinion VARCHAR, favorable VARCHAR, date VARCHAR) ### ANSWER SELECT MAX(unfavorable) FROM table_name_34 WHERE favorable = 34 AND date = "1953 august" AND no_opinion > 24</s>
{ "answer": "SELECT MAX(unfavorable) FROM table_name_34 WHERE favorable = 34 AND date = \"1953 august\" AND no_opinion > 24", "context": "CREATE TABLE table_name_34 (unfavorable INTEGER, no_opinion VARCHAR, favorable VARCHAR, date VARCHAR)", "question": "What is the most unfavorable that is favorable of 34 during 1953 August and has a no opinion score larger than 24?" }
### QUESTION What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign? ### CONTEXT CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) ### ANSWER SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = "w223au"</s>
{ "answer": "SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = \"w223au\"", "context": "CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)", "question": "What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign?" }
### QUESTION Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)? ### CONTEXT CREATE TABLE table_name_20 (finalist VARCHAR, surface VARCHAR, semifinalists VARCHAR) ### ANSWER SELECT finalist FROM table_name_20 WHERE surface = "clay" AND semifinalists = "yevgeny kafelnikov juan carlos ferrero (2)"</s>
{ "answer": "SELECT finalist FROM table_name_20 WHERE surface = \"clay\" AND semifinalists = \"yevgeny kafelnikov juan carlos ferrero (2)\"", "context": "CREATE TABLE table_name_20 (finalist VARCHAR, surface VARCHAR, semifinalists VARCHAR)", "question": "Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)?" }
### QUESTION What South Dakota has Bush of Oklahoma? ### CONTEXT CREATE TABLE table_name_17 (south_dakota VARCHAR, oklahoma VARCHAR) ### ANSWER SELECT south_dakota FROM table_name_17 WHERE oklahoma = "bush"</s>
{ "answer": "SELECT south_dakota FROM table_name_17 WHERE oklahoma = \"bush\"", "context": "CREATE TABLE table_name_17 (south_dakota VARCHAR, oklahoma VARCHAR)", "question": "What South Dakota has Bush of Oklahoma?" }
### QUESTION What is the train name of the rail with a daily frequency and Jammutawi as the destination? ### CONTEXT CREATE TABLE table_name_61 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destination VARCHAR) ### ANSWER SELECT train_name FROM table_name_61 WHERE frequency__inbound_outbound_ = "daily" AND destination = "jammutawi"</s>
{ "answer": "SELECT train_name FROM table_name_61 WHERE frequency__inbound_outbound_ = \"daily\" AND destination = \"jammutawi\"", "context": "CREATE TABLE table_name_61 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destination VARCHAR)", "question": "What is the train name of the rail with a daily frequency and Jammutawi as the destination?" }
### QUESTION What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points? ### CONTEXT CREATE TABLE table_name_84 (tries INTEGER, player VARCHAR, points VARCHAR) ### ANSWER SELECT MIN(tries) FROM table_name_84 WHERE player = "matt diskin" AND points > 16</s>
{ "answer": "SELECT MIN(tries) FROM table_name_84 WHERE player = \"matt diskin\" AND points > 16", "context": "CREATE TABLE table_name_84 (tries INTEGER, player VARCHAR, points VARCHAR)", "question": "What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points?" }
### QUESTION Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player? ### CONTEXT CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR) ### ANSWER SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = "ali lauitiiti"</s>
{ "answer": "SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = \"ali lauitiiti\"", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR)", "question": "Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player?" }
### QUESTION What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6? ### CONTEXT CREATE TABLE table_name_58 (games INTEGER, lost VARCHAR, points VARCHAR, drawn VARCHAR) ### ANSWER SELECT MAX(games) FROM table_name_58 WHERE points < 4 AND drawn = 1 AND lost < 6</s>
{ "answer": "SELECT MAX(games) FROM table_name_58 WHERE points < 4 AND drawn = 1 AND lost < 6", "context": "CREATE TABLE table_name_58 (games INTEGER, lost VARCHAR, points VARCHAR, drawn VARCHAR)", "question": "What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6?" }
### QUESTION What country does david gilford play for? ### CONTEXT CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR) ### ANSWER SELECT country FROM table_name_90 WHERE player = "david gilford"</s>
{ "answer": "SELECT country FROM table_name_90 WHERE player = \"david gilford\"", "context": "CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)", "question": "What country does david gilford play for?" }
### QUESTION What is the score of the game on November 12 with the Chicago Black Hawks as the visitor team? ### CONTEXT CREATE TABLE table_name_24 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_24 WHERE visitor = "chicago black hawks" AND date = "november 12"</s>
{ "answer": "SELECT score FROM table_name_24 WHERE visitor = \"chicago black hawks\" AND date = \"november 12\"", "context": "CREATE TABLE table_name_24 (score VARCHAR, visitor VARCHAR, date VARCHAR)", "question": "What is the score of the game on November 12 with the Chicago Black Hawks as the visitor team?" }
### QUESTION What is the average position for a driver with less than 54 points and husaberg-bsu as equipment? ### CONTEXT CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR) ### ANSWER SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = "husaberg-bsu"</s>
{ "answer": "SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = \"husaberg-bsu\"", "context": "CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR)", "question": "What is the average position for a driver with less than 54 points and husaberg-bsu as equipment?" }
### QUESTION Name the clas AAAA of school year 2000-01 ### CONTEXT CREATE TABLE table_name_76 (class_aAAA VARCHAR, school_year VARCHAR) ### ANSWER SELECT class_aAAA FROM table_name_76 WHERE school_year = "2000-01"</s>
{ "answer": "SELECT class_aAAA FROM table_name_76 WHERE school_year = \"2000-01\"", "context": "CREATE TABLE table_name_76 (class_aAAA VARCHAR, school_year VARCHAR)", "question": "Name the clas AAAA of school year 2000-01" }
### QUESTION how many times is the transfer fee £2,500,000? ### CONTEXT CREATE TABLE table_name_62 (goals VARCHAR, transfer_fee VARCHAR) ### ANSWER SELECT COUNT(goals) FROM table_name_62 WHERE transfer_fee = "£2,500,000"</s>
{ "answer": "SELECT COUNT(goals) FROM table_name_62 WHERE transfer_fee = \"£2,500,000\"", "context": "CREATE TABLE table_name_62 (goals VARCHAR, transfer_fee VARCHAR)", "question": "how many times is the transfer fee £2,500,000?" }
### QUESTION Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor? ### CONTEXT CREATE TABLE table_name_81 (crew_chief VARCHAR, primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, team VARCHAR) ### ANSWER SELECT crew_chief FROM table_name_81 WHERE car_s_ = "chevrolet monte carlo" AND team = "joe gibbs racing" AND primary_sponsor_s_ = "fedex"</s>
{ "answer": "SELECT crew_chief FROM table_name_81 WHERE car_s_ = \"chevrolet monte carlo\" AND team = \"joe gibbs racing\" AND primary_sponsor_s_ = \"fedex\"", "context": "CREATE TABLE table_name_81 (crew_chief VARCHAR, primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, team VARCHAR)", "question": "Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor?" }
### QUESTION Who is the driver of the team with the crew chief Derrick Finley? ### CONTEXT CREATE TABLE table_name_16 (driver_s_ VARCHAR, crew_chief VARCHAR) ### ANSWER SELECT driver_s_ FROM table_name_16 WHERE crew_chief = "derrick finley"</s>
{ "answer": "SELECT driver_s_ FROM table_name_16 WHERE crew_chief = \"derrick finley\"", "context": "CREATE TABLE table_name_16 (driver_s_ VARCHAR, crew_chief VARCHAR)", "question": "Who is the driver of the team with the crew chief Derrick Finley?" }
### QUESTION Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver? ### CONTEXT CREATE TABLE table_name_10 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR) ### ANSWER SELECT crew_chief FROM table_name_10 WHERE team = "chip ganassi racing with felix sabates" AND driver_s_ = "casey mears"</s>
{ "answer": "SELECT crew_chief FROM table_name_10 WHERE team = \"chip ganassi racing with felix sabates\" AND driver_s_ = \"casey mears\"", "context": "CREATE TABLE table_name_10 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)", "question": "Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver?" }
### QUESTION What is the record when the visiting team was the Quebec Nordiques on April 22? ### CONTEXT CREATE TABLE table_name_26 (record VARCHAR, visitor VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_26 WHERE visitor = "quebec nordiques" AND date = "april 22"</s>
{ "answer": "SELECT record FROM table_name_26 WHERE visitor = \"quebec nordiques\" AND date = \"april 22\"", "context": "CREATE TABLE table_name_26 (record VARCHAR, visitor VARCHAR, date VARCHAR)", "question": "What is the record when the visiting team was the Quebec Nordiques on April 22?" }