text
stringlengths
150
1.06k
source
dict
### QUESTION Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275? ### CONTEXT CREATE TABLE table_name_91 (gymnast VARCHAR, vault VARCHAR, floor_exercise VARCHAR, balance_beam VARCHAR, total VARCHAR) ### ANSWER SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275</s>
{ "answer": "SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275", "context": "CREATE TABLE table_name_91 (gymnast VARCHAR, vault VARCHAR, floor_exercise VARCHAR, balance_beam VARCHAR, total VARCHAR)", "question": "Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275?" }
### QUESTION What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8? ### CONTEXT CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_retired VARCHAR, grid VARCHAR) ### ANSWER SELECT MIN(laps) FROM table_name_20 WHERE time_retired = "engine" AND grid > 8 AND driver = "george eaton"</s>
{ "answer": "SELECT MIN(laps) FROM table_name_20 WHERE time_retired = \"engine\" AND grid > 8 AND driver = \"george eaton\"", "context": "CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_retired VARCHAR, grid VARCHAR)", "question": "What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8?" }
### QUESTION Tell me the Grantee for san ysidro ### CONTEXT CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR) ### ANSWER SELECT grantee FROM table_name_34 WHERE concession = "san ysidro"</s>
{ "answer": "SELECT grantee FROM table_name_34 WHERE concession = \"san ysidro\"", "context": "CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR)", "question": "Tell me the Grantee for san ysidro" }
### QUESTION how many laps have a time/retired of +1 lap and mark blundell is the driver? ### CONTEXT CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR) ### ANSWER SELECT AVG(laps) FROM table_name_85 WHERE time_retired = "+1 lap" AND driver = "mark blundell"</s>
{ "answer": "SELECT AVG(laps) FROM table_name_85 WHERE time_retired = \"+1 lap\" AND driver = \"mark blundell\"", "context": "CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)", "question": "how many laps have a time/retired of +1 lap and mark blundell is the driver?" }
### QUESTION what is the highest grid when the time/retired is fuel pump and the laps is more than 26? ### CONTEXT CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### ANSWER SELECT MAX(grid) FROM table_name_95 WHERE time_retired = "fuel pump" AND laps > 26</s>
{ "answer": "SELECT MAX(grid) FROM table_name_95 WHERE time_retired = \"fuel pump\" AND laps > 26", "context": "CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)", "question": "what is the highest grid when the time/retired is fuel pump and the laps is more than 26?" }
### QUESTION What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014? ### CONTEXT CREATE TABLE table_name_68 (total_games INTEGER, pct VARCHAR, team VARCHAR, conference VARCHAR, lost VARCHAR) ### ANSWER SELECT SUM(total_games) FROM table_name_68 WHERE conference = "big ten" AND lost < 488 AND team = "nebraska" AND pct < 0.7014</s>
{ "answer": "SELECT SUM(total_games) FROM table_name_68 WHERE conference = \"big ten\" AND lost < 488 AND team = \"nebraska\" AND pct < 0.7014", "context": "CREATE TABLE table_name_68 (total_games INTEGER, pct VARCHAR, team VARCHAR, conference VARCHAR, lost VARCHAR)", "question": "What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014?" }
### QUESTION Tell me the highest Grid for Maurice Trintignant and laps less than 87 ### CONTEXT CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### ANSWER SELECT MAX(grid) FROM table_name_14 WHERE driver = "maurice trintignant" AND laps < 87</s>
{ "answer": "SELECT MAX(grid) FROM table_name_14 WHERE driver = \"maurice trintignant\" AND laps < 87", "context": "CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)", "question": "Tell me the highest Grid for Maurice Trintignant and laps less than 87" }
### QUESTION What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent? ### CONTEXT CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR) ### ANSWER SELECT score FROM table_name_43 WHERE surface = "clay" AND year > 2006 AND opponent = "david ferrer"</s>
{ "answer": "SELECT score FROM table_name_43 WHERE surface = \"clay\" AND year > 2006 AND opponent = \"david ferrer\"", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR)", "question": "What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?" }
### QUESTION Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007? ### CONTEXT CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR, surface VARCHAR) ### ANSWER SELECT championship FROM table_name_36 WHERE opponent = "roger federer" AND surface = "clay" AND year < 2007</s>
{ "answer": "SELECT championship FROM table_name_36 WHERE opponent = \"roger federer\" AND surface = \"clay\" AND year < 2007", "context": "CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR, surface VARCHAR)", "question": "Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?" }
### QUESTION What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin? ### CONTEXT CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR) ### ANSWER SELECT first_class_team FROM table_name_15 WHERE bowling_style = "left arm orthodox spin"</s>
{ "answer": "SELECT first_class_team FROM table_name_15 WHERE bowling_style = \"left arm orthodox spin\"", "context": "CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR)", "question": "What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin?" }
### QUESTION Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in? ### CONTEXT CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR) ### ANSWER SELECT MIN(goals) FROM table_name_92 WHERE matches = "16" AND scorer = "park sang-in"</s>
{ "answer": "SELECT MIN(goals) FROM table_name_92 WHERE matches = \"16\" AND scorer = \"park sang-in\"", "context": "CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR)", "question": "Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?" }
### QUESTION Which Lost has Seasons of 2, and Goals against larger than 43? ### CONTEXT CREATE TABLE table_name_75 (lost INTEGER, seasons VARCHAR, goals_against VARCHAR) ### ANSWER SELECT MAX(lost) FROM table_name_75 WHERE seasons = 2 AND goals_against > 43</s>
{ "answer": "SELECT MAX(lost) FROM table_name_75 WHERE seasons = 2 AND goals_against > 43", "context": "CREATE TABLE table_name_75 (lost INTEGER, seasons VARCHAR, goals_against VARCHAR)", "question": "Which Lost has Seasons of 2, and Goals against larger than 43?" }
### QUESTION Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3? ### CONTEXT CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR) ### ANSWER SELECT college_junior_club_team__league_ FROM table_name_48 WHERE position = "right wing" AND round < 3</s>
{ "answer": "SELECT college_junior_club_team__league_ FROM table_name_48 WHERE position = \"right wing\" AND round < 3", "context": "CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)", "question": "Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3?" }
### 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</s>
{ "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 On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)? ### CONTEXT CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR) ### ANSWER SELECT surface FROM table_name_24 WHERE partner = "david martin" AND score = "4–6, 6–7 (4-7)"</s>
{ "answer": "SELECT surface FROM table_name_24 WHERE partner = \"david martin\" AND score = \"4–6, 6–7 (4-7)\"", "context": "CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR)", "question": "On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)?" }
### QUESTION What record has Glenn Robinson (16) as the leading scorer? ### CONTEXT CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR) ### ANSWER SELECT record FROM table_name_83 WHERE leading_scorer = "glenn robinson (16)"</s>
{ "answer": "SELECT record FROM table_name_83 WHERE leading_scorer = \"glenn robinson (16)\"", "context": "CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)", "question": "What record has Glenn Robinson (16) as the leading scorer?" }
### QUESTION Whose attendance was the highest when the team played Arsenal? ### CONTEXT CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR) ### ANSWER SELECT MAX(attendance) FROM table_name_95 WHERE opponent = "arsenal"</s>
{ "answer": "SELECT MAX(attendance) FROM table_name_95 WHERE opponent = \"arsenal\"", "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)", "question": "Whose attendance was the highest when the team played Arsenal?" }
### QUESTION what is the average genes when the reference is 2009 and the strain is rku-1? ### CONTEXT CREATE TABLE table_name_84 (genes INTEGER, reference VARCHAR, strain VARCHAR) ### ANSWER SELECT AVG(genes) FROM table_name_84 WHERE reference = "2009" AND strain = "rku-1"</s>
{ "answer": "SELECT AVG(genes) FROM table_name_84 WHERE reference = \"2009\" AND strain = \"rku-1\"", "context": "CREATE TABLE table_name_84 (genes INTEGER, reference VARCHAR, strain VARCHAR)", "question": "what is the average genes when the reference is 2009 and the strain is rku-1?" }
### QUESTION On what Date were the Results¹ 4:0? ### CONTEXT CREATE TABLE table_name_47 (date VARCHAR, results¹ VARCHAR) ### ANSWER SELECT date FROM table_name_47 WHERE results¹ = "4:0"</s>
{ "answer": "SELECT date FROM table_name_47 WHERE results¹ = \"4:0\"", "context": "CREATE TABLE table_name_47 (date VARCHAR, results¹ VARCHAR)", "question": "On what Date were the Results¹ 4:0?" }
### QUESTION What was the away teams score at Princes Park? ### CONTEXT CREATE TABLE table_name_37 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_37 WHERE venue = "princes park"</s>
{ "answer": "SELECT away_team AS score FROM table_name_37 WHERE venue = \"princes park\"", "context": "CREATE TABLE table_name_37 (away_team VARCHAR, venue VARCHAR)", "question": "What was the away teams score at Princes Park?" }
### QUESTION Which Home has a Visitor of ny rangers, and a Series of flyers win 4–3? ### CONTEXT CREATE TABLE table_name_42 (home VARCHAR, visitor VARCHAR, series VARCHAR) ### ANSWER SELECT home FROM table_name_42 WHERE visitor = "ny rangers" AND series = "flyers win 4–3"</s>
{ "answer": "SELECT home FROM table_name_42 WHERE visitor = \"ny rangers\" AND series = \"flyers win 4–3\"", "context": "CREATE TABLE table_name_42 (home VARCHAR, visitor VARCHAR, series VARCHAR)", "question": "Which Home has a Visitor of ny rangers, and a Series of flyers win 4–3?" }
### QUESTION What college did the player from Fort Lauderdale, FL attend? ### CONTEXT CREATE TABLE table_name_79 (college VARCHAR, hometown VARCHAR) ### ANSWER SELECT college FROM table_name_79 WHERE hometown = "fort lauderdale, fl"</s>
{ "answer": "SELECT college FROM table_name_79 WHERE hometown = \"fort lauderdale, fl\"", "context": "CREATE TABLE table_name_79 (college VARCHAR, hometown VARCHAR)", "question": "What college did the player from Fort Lauderdale, FL attend?" }
### QUESTION Name the frequency mhz for ERP W of 850 watts ### CONTEXT CREATE TABLE table_name_44 (frequency_mhz VARCHAR, erp_w VARCHAR) ### ANSWER SELECT frequency_mhz FROM table_name_44 WHERE erp_w = "850 watts"</s>
{ "answer": "SELECT frequency_mhz FROM table_name_44 WHERE erp_w = \"850 watts\"", "context": "CREATE TABLE table_name_44 (frequency_mhz VARCHAR, erp_w VARCHAR)", "question": "Name the frequency mhz for ERP W of 850 watts" }
### QUESTION Tell me the most Att with a long of 27 with yards longer than 27 ### CONTEXT CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR) ### ANSWER SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27</s>
{ "answer": "SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27", "context": "CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)", "question": "Tell me the most Att with a long of 27 with yards longer than 27" }
### QUESTION How many points were scored in 1:44:59.557 of time? ### CONTEXT CREATE TABLE table_name_64 (points VARCHAR, time_retired VARCHAR) ### ANSWER SELECT points FROM table_name_64 WHERE time_retired = "1:44:59.557"</s>
{ "answer": "SELECT points FROM table_name_64 WHERE time_retired = \"1:44:59.557\"", "context": "CREATE TABLE table_name_64 (points VARCHAR, time_retired VARCHAR)", "question": "How many points were scored in 1:44:59.557 of time?" }
### QUESTION What Date has a Result of l 21–34? ### CONTEXT CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_31 WHERE result = "l 21–34"</s>
{ "answer": "SELECT date FROM table_name_31 WHERE result = \"l 21–34\"", "context": "CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR)", "question": "What Date has a Result of l 21–34?" }
### QUESTION What is the latest year that has an n/a mintage and an Issue Price of $89.95? ### CONTEXT CREATE TABLE table_name_39 (year INTEGER, mintage VARCHAR, issue_price VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_39 WHERE mintage = "n/a" AND issue_price = "$89.95"</s>
{ "answer": "SELECT MAX(year) FROM table_name_39 WHERE mintage = \"n/a\" AND issue_price = \"$89.95\"", "context": "CREATE TABLE table_name_39 (year INTEGER, mintage VARCHAR, issue_price VARCHAR)", "question": "What is the latest year that has an n/a mintage and an Issue Price of $89.95?" }
### QUESTION What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS? ### CONTEXT CREATE TABLE table_name_18 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR) ### ANSWER SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_18 WHERE code__iata_icao_ = "bkk/vtbs" AND rank > 19</s>
{ "answer": "SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_18 WHERE code__iata_icao_ = \"bkk/vtbs\" AND rank > 19", "context": "CREATE TABLE table_name_18 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR)", "question": "What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?" }
### QUESTION Which new team has a compensation-a round, and Frank Catalanotto as a player? ### CONTEXT CREATE TABLE table_name_27 (new_team VARCHAR, round VARCHAR, player VARCHAR) ### ANSWER SELECT new_team FROM table_name_27 WHERE round = "compensation-a" AND player = "frank catalanotto"</s>
{ "answer": "SELECT new_team FROM table_name_27 WHERE round = \"compensation-a\" AND player = \"frank catalanotto\"", "context": "CREATE TABLE table_name_27 (new_team VARCHAR, round VARCHAR, player VARCHAR)", "question": "Which new team has a compensation-a round, and Frank Catalanotto as a player?" }
### QUESTION Who is the Artist with an Issue Price (BU) [Clarification Needed] of n/a along with a Year larger than 2004, and Mintage (Proof) of 25,000? ### CONTEXT CREATE TABLE table_name_53 (artist VARCHAR, mintage__proof_ VARCHAR, year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR) ### ANSWER SELECT artist FROM table_name_53 WHERE issue_price__bu_[_clarification_needed_] = "n/a" AND year > 2004 AND mintage__proof_ = "25,000"</s>
{ "answer": "SELECT artist FROM table_name_53 WHERE issue_price__bu_[_clarification_needed_] = \"n/a\" AND year > 2004 AND mintage__proof_ = \"25,000\"", "context": "CREATE TABLE table_name_53 (artist VARCHAR, mintage__proof_ VARCHAR, year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)", "question": "Who is the Artist with an Issue Price (BU) [Clarification Needed] of n/a along with a Year larger than 2004, and Mintage (Proof) of 25,000?" }
### QUESTION What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore? ### CONTEXT CREATE TABLE table_name_19 (year INTEGER, issue_price__proof_ VARCHAR, artist VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_19 WHERE issue_price__proof_ = "$49.95" AND artist = "w.h.j. blakemore"</s>
{ "answer": "SELECT AVG(year) FROM table_name_19 WHERE issue_price__proof_ = \"$49.95\" AND artist = \"w.h.j. blakemore\"", "context": "CREATE TABLE table_name_19 (year INTEGER, issue_price__proof_ VARCHAR, artist VARCHAR)", "question": "What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore?" }
### QUESTION For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity? ### CONTEXT CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR) ### ANSWER SELECT MIN(quantity) FROM table_name_60 WHERE name = "raison blue" AND nicotine > 0.30000000000000004</s>
{ "answer": "SELECT MIN(quantity) FROM table_name_60 WHERE name = \"raison blue\" AND nicotine > 0.30000000000000004", "context": "CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR)", "question": "For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?" }
### QUESTION What is the height for rank greater than 10 in Tameer Tower? ### CONTEXT CREATE TABLE table_name_77 (height_m__ft_ VARCHAR, rank VARCHAR, name VARCHAR) ### ANSWER SELECT height_m__ft_ FROM table_name_77 WHERE rank > 10 AND name = "tameer tower"</s>
{ "answer": "SELECT height_m__ft_ FROM table_name_77 WHERE rank > 10 AND name = \"tameer tower\"", "context": "CREATE TABLE table_name_77 (height_m__ft_ VARCHAR, rank VARCHAR, name VARCHAR)", "question": "What is the height for rank greater than 10 in Tameer Tower?" }
### QUESTION How many Laps have a Driver of satrio hermanto? ### CONTEXT CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR) ### ANSWER SELECT SUM(laps) FROM table_name_76 WHERE driver = "satrio hermanto"</s>
{ "answer": "SELECT SUM(laps) FROM table_name_76 WHERE driver = \"satrio hermanto\"", "context": "CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)", "question": "How many Laps have a Driver of satrio hermanto?" }
### QUESTION What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5? ### CONTEXT CREATE TABLE table_name_70 (swing_to_gain INTEGER, winning_party_2007 VARCHAR, rank VARCHAR) ### ANSWER SELECT SUM(swing_to_gain) FROM table_name_70 WHERE winning_party_2007 = "conservative" AND rank < 5</s>
{ "answer": "SELECT SUM(swing_to_gain) FROM table_name_70 WHERE winning_party_2007 = \"conservative\" AND rank < 5", "context": "CREATE TABLE table_name_70 (swing_to_gain INTEGER, winning_party_2007 VARCHAR, rank VARCHAR)", "question": "What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5?" }
### QUESTION What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady? ### CONTEXT CREATE TABLE table_name_16 (title VARCHAR, leading_lady VARCHAR, director VARCHAR, year VARCHAR) ### ANSWER SELECT title FROM table_name_16 WHERE director = "rouben mamoulian" AND year > 1940 AND leading_lady = "linda darnell"</s>
{ "answer": "SELECT title FROM table_name_16 WHERE director = \"rouben mamoulian\" AND year > 1940 AND leading_lady = \"linda darnell\"", "context": "CREATE TABLE table_name_16 (title VARCHAR, leading_lady VARCHAR, director VARCHAR, year VARCHAR)", "question": "What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady?" }
### QUESTION Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons? ### CONTEXT ### ANSWER SELECT MAX(_3_balls_2_ribbons) FROM table_name_16 WHERE nation = "bulgaria" AND place > 1</s>
{ "answer": "SELECT MAX(_3_balls_2_ribbons) FROM table_name_16 WHERE nation = \"bulgaria\" AND place > 1", "context": "", "question": "Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons?" }
### QUESTION I want the time/retired with grid less than 22 and Laps less than 33 for john surtees ### CONTEXT CREATE TABLE table_name_96 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT time_retired FROM table_name_96 WHERE grid < 22 AND laps < 33 AND driver = "john surtees"</s>
{ "answer": "SELECT time_retired FROM table_name_96 WHERE grid < 22 AND laps < 33 AND driver = \"john surtees\"", "context": "CREATE TABLE table_name_96 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "I want the time/retired with grid less than 22 and Laps less than 33 for john surtees" }
### QUESTION what voice acter played tien ### CONTEXT CREATE TABLE table_name_59 (voice_actor__japanese_ VARCHAR, character_name VARCHAR) ### ANSWER SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = "tien"</s>
{ "answer": "SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = \"tien\"", "context": "CREATE TABLE table_name_59 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)", "question": "what voice acter played tien" }
### QUESTION What is the score of the 1996 Emarate cup on March 25, 1996? ### CONTEXT CREATE TABLE table_name_79 (score VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_79 WHERE competition = "1996 emarate cup" AND date = "march 25, 1996"</s>
{ "answer": "SELECT score FROM table_name_79 WHERE competition = \"1996 emarate cup\" AND date = \"march 25, 1996\"", "context": "CREATE TABLE table_name_79 (score VARCHAR, competition VARCHAR, date VARCHAR)", "question": "What is the score of the 1996 Emarate cup on March 25, 1996?" }
### QUESTION Which competition was on August 11, 1996? ### CONTEXT CREATE TABLE table_name_42 (competition VARCHAR, date VARCHAR) ### ANSWER SELECT competition FROM table_name_42 WHERE date = "august 11, 1996"</s>
{ "answer": "SELECT competition FROM table_name_42 WHERE date = \"august 11, 1996\"", "context": "CREATE TABLE table_name_42 (competition VARCHAR, date VARCHAR)", "question": "Which competition was on August 11, 1996?" }
### QUESTION During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win? ### CONTEXT CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT race FROM table_name_51 WHERE fastest_lap = "mike hawthorn" AND winning_driver = "peter collins"</s>
{ "answer": "SELECT race FROM table_name_51 WHERE fastest_lap = \"mike hawthorn\" AND winning_driver = \"peter collins\"", "context": "CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)", "question": "During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win?" }
### QUESTION Which name has an overall number of more than 164, when the pick number is more than 2, the position is running back, and the round is 16? ### CONTEXT CREATE TABLE table_name_9 (name VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR, pick__number VARCHAR) ### ANSWER SELECT name FROM table_name_9 WHERE overall > 164 AND pick__number > 2 AND position = "running back" AND round = 16</s>
{ "answer": "SELECT name FROM table_name_9 WHERE overall > 164 AND pick__number > 2 AND position = \"running back\" AND round = 16", "context": "CREATE TABLE table_name_9 (name VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR, pick__number VARCHAR)", "question": "Which name has an overall number of more than 164, when the pick number is more than 2, the position is running back, and the round is 16?" }
### QUESTION What is the class of the qb, Josh Riddell? ### CONTEXT CREATE TABLE table_name_45 (class VARCHAR, position VARCHAR, name VARCHAR) ### ANSWER SELECT class FROM table_name_45 WHERE position = "qb" AND name = "josh riddell"</s>
{ "answer": "SELECT class FROM table_name_45 WHERE position = \"qb\" AND name = \"josh riddell\"", "context": "CREATE TABLE table_name_45 (class VARCHAR, position VARCHAR, name VARCHAR)", "question": "What is the class of the qb, Josh Riddell?" }
### QUESTION Which venue has a Score of 1–0, and a Competition of 2002 world cup qualifier? ### CONTEXT CREATE TABLE table_name_91 (venue VARCHAR, score VARCHAR, competition VARCHAR) ### ANSWER SELECT venue FROM table_name_91 WHERE score = "1–0" AND competition = "2002 world cup qualifier"</s>
{ "answer": "SELECT venue FROM table_name_91 WHERE score = \"1–0\" AND competition = \"2002 world cup qualifier\"", "context": "CREATE TABLE table_name_91 (venue VARCHAR, score VARCHAR, competition VARCHAR)", "question": "Which venue has a Score of 1–0, and a Competition of 2002 world cup qualifier?" }
### QUESTION What is the date for the grass surface final against Nathan Healey? ### CONTEXT CREATE TABLE table_name_41 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### ANSWER SELECT date FROM table_name_41 WHERE surface = "grass" AND opponent_in_the_final = "nathan healey"</s>
{ "answer": "SELECT date FROM table_name_41 WHERE surface = \"grass\" AND opponent_in_the_final = \"nathan healey\"", "context": "CREATE TABLE table_name_41 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)", "question": "What is the date for the grass surface final against Nathan Healey?" }
### QUESTION What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187? ### CONTEXT CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR) ### ANSWER SELECT tyres FROM table_name_27 WHERE engine_s_ = "ford dfz v8" AND chassis = "coloni fc187"</s>
{ "answer": "SELECT tyres FROM table_name_27 WHERE engine_s_ = \"ford dfz v8\" AND chassis = \"coloni fc187\"", "context": "CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR)", "question": "What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187?" }
### QUESTION What competition was played on 2 June 1992? ### CONTEXT CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR) ### ANSWER SELECT competition FROM table_name_4 WHERE date = "2 june 1992"</s>
{ "answer": "SELECT competition FROM table_name_4 WHERE date = \"2 june 1992\"", "context": "CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)", "question": "What competition was played on 2 June 1992?" }
### QUESTION What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II? ### CONTEXT CREATE TABLE table_name_87 (round INTEGER, event VARCHAR, location VARCHAR, method VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_87 WHERE location = "las vegas, nevada" AND method = "decision (unanimous)" AND event = "k-1 world grand prix 2003 in las vegas ii"</s>
{ "answer": "SELECT MIN(round) FROM table_name_87 WHERE location = \"las vegas, nevada\" AND method = \"decision (unanimous)\" AND event = \"k-1 world grand prix 2003 in las vegas ii\"", "context": "CREATE TABLE table_name_87 (round INTEGER, event VARCHAR, location VARCHAR, method VARCHAR)", "question": "What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II?" }
### QUESTION What is the average number of silver medals for rank 2 and more than 1 bronze medal? ### CONTEXT CREATE TABLE table_name_15 (silver INTEGER, rank VARCHAR, bronze VARCHAR) ### ANSWER SELECT AVG(silver) FROM table_name_15 WHERE rank = 2 AND bronze > 1</s>
{ "answer": "SELECT AVG(silver) FROM table_name_15 WHERE rank = 2 AND bronze > 1", "context": "CREATE TABLE table_name_15 (silver INTEGER, rank VARCHAR, bronze VARCHAR)", "question": "What is the average number of silver medals for rank 2 and more than 1 bronze medal?" }
### QUESTION What years does Our Lady Sacred Heart School, which is state integrated, have? ### CONTEXT CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR) ### ANSWER SELECT years FROM table_name_47 WHERE authority = "state integrated" AND name = "our lady sacred heart school"</s>
{ "answer": "SELECT years FROM table_name_47 WHERE authority = \"state integrated\" AND name = \"our lady sacred heart school\"", "context": "CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR)", "question": "What years does Our Lady Sacred Heart School, which is state integrated, have?" }
### QUESTION Which constructor has 10-12 rounds and a M7A chassis? ### CONTEXT CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR) ### ANSWER SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a"</s>
{ "answer": "SELECT constructor FROM table_name_40 WHERE rounds = \"10-12\" AND chassis = \"m7a\"", "context": "CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)", "question": "Which constructor has 10-12 rounds and a M7A chassis?" }
### QUESTION What were the total number of entries in 2001 that had a front row smaller than 13? ### CONTEXT CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR) ### ANSWER SELECT COUNT(entries) FROM table_name_55 WHERE season = "2001" AND front_row_starts < 13</s>
{ "answer": "SELECT COUNT(entries) FROM table_name_55 WHERE season = \"2001\" AND front_row_starts < 13", "context": "CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR)", "question": "What were the total number of entries in 2001 that had a front row smaller than 13?" }
### QUESTION Which driver has a G tyre, rounds of 2-12 and a M7A chassis? ### CONTEXT CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR) ### ANSWER SELECT driver FROM table_name_18 WHERE tyre = "g" AND rounds = "2-12" AND chassis = "m7a"</s>
{ "answer": "SELECT driver FROM table_name_18 WHERE tyre = \"g\" AND rounds = \"2-12\" AND chassis = \"m7a\"", "context": "CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)", "question": "Which driver has a G tyre, rounds of 2-12 and a M7A chassis?" }
### QUESTION What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings? ### CONTEXT CREATE TABLE table_name_51 (runs VARCHAR, average VARCHAR, innings VARCHAR) ### ANSWER SELECT COUNT(runs) FROM table_name_51 WHERE average > 31.25 AND innings < 24</s>
{ "answer": "SELECT COUNT(runs) FROM table_name_51 WHERE average > 31.25 AND innings < 24", "context": "CREATE TABLE table_name_51 (runs VARCHAR, average VARCHAR, innings VARCHAR)", "question": "What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings?" }
### QUESTION Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14? ### CONTEXT CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR) ### ANSWER SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = "fingal valley" AND wins < 14</s>
{ "answer": "SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = \"fingal valley\" AND wins < 14", "context": "CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR)", "question": "Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?" }
### QUESTION Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29? ### CONTEXT CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR) ### ANSWER SELECT nationality___opponent FROM table_name_63 WHERE competition = "welsh rugby union challenge trophy" AND result = "38-29"</s>
{ "answer": "SELECT nationality___opponent FROM table_name_63 WHERE competition = \"welsh rugby union challenge trophy\" AND result = \"38-29\"", "context": "CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR)", "question": "Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29?" }
### QUESTION What is Tommy Nobis' position that has fewer than 16 picks? ### CONTEXT CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR) ### ANSWER SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis"</s>
{ "answer": "SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = \"tommy nobis\"", "context": "CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR)", "question": "What is Tommy Nobis' position that has fewer than 16 picks?" }
### QUESTION What type of chipset is in the Precision t3400 model with the PCI Express graphics? ### CONTEXT CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR) ### ANSWER SELECT chipset FROM table_name_97 WHERE graphics = "pci express" AND model = "precision t3400"</s>
{ "answer": "SELECT chipset FROM table_name_97 WHERE graphics = \"pci express\" AND model = \"precision t3400\"", "context": "CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR)", "question": "What type of chipset is in the Precision t3400 model with the PCI Express graphics?" }
### QUESTION Name the Nationality / Opponent of rosario? ### CONTEXT CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR) ### ANSWER SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario"</s>
{ "answer": "SELECT competition FROM table_name_64 WHERE nationality___opponent = \"rosario\"", "context": "CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR)", "question": "Name the Nationality / Opponent of rosario?" }
### QUESTION Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2? ### CONTEXT CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR) ### ANSWER SELECT SUM(pos) FROM table_name_41 WHERE make = "chevrolet" AND driver = "jack sprague" AND car__number < 2</s>
{ "answer": "SELECT SUM(pos) FROM table_name_41 WHERE make = \"chevrolet\" AND driver = \"jack sprague\" AND car__number < 2", "context": "CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)", "question": "Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?" }
### QUESTION Which pick was from Lamar High School? ### CONTEXT CREATE TABLE table_name_15 (pick VARCHAR, school VARCHAR) ### ANSWER SELECT pick FROM table_name_15 WHERE school = "lamar high school"</s>
{ "answer": "SELECT pick FROM table_name_15 WHERE school = \"lamar high school\"", "context": "CREATE TABLE table_name_15 (pick VARCHAR, school VARCHAR)", "question": "Which pick was from Lamar High School?" }
### QUESTION Which Pos has a Team of circle bar racing, and a Car # smaller than 14? ### CONTEXT CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR) ### ANSWER SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14</s>
{ "answer": "SELECT MAX(pos) FROM table_name_64 WHERE team = \"circle bar racing\" AND car__number < 14", "context": "CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR)", "question": "Which Pos has a Team of circle bar racing, and a Car # smaller than 14?" }
### QUESTION What is the result of the hypo-meeting before 2010? ### CONTEXT CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR) ### ANSWER SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = "hypo-meeting"</s>
{ "answer": "SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = \"hypo-meeting\"", "context": "CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)", "question": "What is the result of the hypo-meeting before 2010?" }
### QUESTION What circuit was after round 2 in Victoria? ### CONTEXT CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR) ### ANSWER SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = "victoria"</s>
{ "answer": "SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = \"victoria\"", "context": "CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR)", "question": "What circuit was after round 2 in Victoria?" }
### QUESTION What is the total number of national titles for the team with doane tigers as the mascot? ### CONTEXT CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR) ### ANSWER SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers"</s>
{ "answer": "SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = \"doane tigers\"", "context": "CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR)", "question": "What is the total number of national titles for the team with doane tigers as the mascot?" }
### QUESTION Which year's crew is varsity 8+ when the record is 7-3? ### CONTEXT CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR) ### ANSWER SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3"</s>
{ "answer": "SELECT year FROM table_name_63 WHERE crew = \"varsity 8+\" AND record = \"7-3\"", "context": "CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR)", "question": "Which year's crew is varsity 8+ when the record is 7-3?" }
### QUESTION During footscray's home game, how much did the away team score? ### CONTEXT CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_74 WHERE home_team = "footscray"</s>
{ "answer": "SELECT away_team AS score FROM table_name_74 WHERE home_team = \"footscray\"", "context": "CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)", "question": "During footscray's home game, how much did the away team score?" }
### QUESTION Which place has 23 floors and a street address in Detroit of 144 west congress street? ### CONTEXT CREATE TABLE table_name_17 (name VARCHAR, floors VARCHAR, street_address_in_detroit VARCHAR) ### ANSWER SELECT name FROM table_name_17 WHERE floors = 23 AND street_address_in_detroit = "144 west congress street"</s>
{ "answer": "SELECT name FROM table_name_17 WHERE floors = 23 AND street_address_in_detroit = \"144 west congress street\"", "context": "CREATE TABLE table_name_17 (name VARCHAR, floors VARCHAR, street_address_in_detroit VARCHAR)", "question": "Which place has 23 floors and a street address in Detroit of 144 west congress street?" }
### QUESTION Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132? ### CONTEXT CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = "tight end" AND overall < 132</s>
{ "answer": "SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = \"tight end\" AND overall < 132", "context": "CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)", "question": "Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132?" }
### QUESTION Name the report for circuit of kyalami for south african republic trophy ### CONTEXT CREATE TABLE table_name_8 (report VARCHAR, circuit VARCHAR, race_name VARCHAR) ### ANSWER SELECT report FROM table_name_8 WHERE circuit = "kyalami" AND race_name = "south african republic trophy"</s>
{ "answer": "SELECT report FROM table_name_8 WHERE circuit = \"kyalami\" AND race_name = \"south african republic trophy\"", "context": "CREATE TABLE table_name_8 (report VARCHAR, circuit VARCHAR, race_name VARCHAR)", "question": "Name the report for circuit of kyalami for south african republic trophy" }
### QUESTION What is the highest position the album Where we belong, which had an issue date higher than 9, had? ### CONTEXT CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR) ### ANSWER SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"</s>
{ "answer": "SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = \"where we belong\"", "context": "CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)", "question": "What is the highest position the album Where we belong, which had an issue date higher than 9, had?" }
### QUESTION Which country had a series that premiered on September 4, 2006? ### CONTEXT CREATE TABLE table_name_77 (country VARCHAR, series_premiere VARCHAR) ### ANSWER SELECT country FROM table_name_77 WHERE series_premiere = "september 4, 2006"</s>
{ "answer": "SELECT country FROM table_name_77 WHERE series_premiere = \"september 4, 2006\"", "context": "CREATE TABLE table_name_77 (country VARCHAR, series_premiere VARCHAR)", "question": "Which country had a series that premiered on September 4, 2006?" }
### QUESTION What Car Model has the Manufacturer of Saab, and Driver Dean Randle? ### CONTEXT CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR) ### ANSWER SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle"</s>
{ "answer": "SELECT car_model FROM table_name_35 WHERE manufacturer = \"saab\" AND driver = \"dean randle\"", "context": "CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR)", "question": "What Car Model has the Manufacturer of Saab, and Driver Dean Randle?" }
### QUESTION Who is the Driver with the Team of P & L Mechanical Services? ### CONTEXT CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR) ### ANSWER SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services"</s>
{ "answer": "SELECT driver FROM table_name_1 WHERE team = \"p & l mechanical services\"", "context": "CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR)", "question": "Who is the Driver with the Team of P & L Mechanical Services?" }
### QUESTION Which region in Saint-Simon-Les-Mines has a population smaller than 458? ### CONTEXT CREATE TABLE table_name_9 (region INTEGER, name VARCHAR, population VARCHAR) ### ANSWER SELECT MAX(region) FROM table_name_9 WHERE name = "saint-simon-les-mines" AND population < 458</s>
{ "answer": "SELECT MAX(region) FROM table_name_9 WHERE name = \"saint-simon-les-mines\" AND population < 458", "context": "CREATE TABLE table_name_9 (region INTEGER, name VARCHAR, population VARCHAR)", "question": "Which region in Saint-Simon-Les-Mines has a population smaller than 458?" }
### QUESTION What is total population of Saint-Agapit (code 33045)? ### CONTEXT CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR) ### ANSWER SELECT SUM(region) FROM table_name_99 WHERE name = "saint-agapit" AND code < 33045</s>
{ "answer": "SELECT SUM(region) FROM table_name_99 WHERE name = \"saint-agapit\" AND code < 33045", "context": "CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR)", "question": "What is total population of Saint-Agapit (code 33045)?" }
### QUESTION What is the average area larger than Code 19025 but a smaller region than 12? ### CONTEXT CREATE TABLE table_name_91 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR) ### ANSWER SELECT AVG(area__km_2__) FROM table_name_91 WHERE code > 19025 AND region < 12</s>
{ "answer": "SELECT AVG(area__km_2__) FROM table_name_91 WHERE code > 19025 AND region < 12", "context": "CREATE TABLE table_name_91 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR)", "question": "What is the average area larger than Code 19025 but a smaller region than 12?" }
### QUESTION which MSDN integration has a Load testing of no, and a Test impact analysis of no? ### CONTEXT CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR) ### ANSWER SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no"</s>
{ "answer": "SELECT msdn_integration FROM table_name_16 WHERE load_testing = \"no\" AND test_impact_analysis = \"no\"", "context": "CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR)", "question": "which MSDN integration has a Load testing of no, and a Test impact analysis of no?" }
### QUESTION Which Intelli Trace has a No Extension and Windows Phone development of no? ### CONTEXT CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR) ### ANSWER SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"</s>
{ "answer": "SELECT intellitrace FROM table_name_10 WHERE extensions = \"no\" AND windows_phone_development = \"no\"", "context": "CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)", "question": "Which Intelli Trace has a No Extension and Windows Phone development of no?" }
### QUESTION Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no? ### CONTEXT CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR) ### ANSWER SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"</s>
{ "answer": "SELECT projects_templates FROM table_name_39 WHERE intellitrace = \"no\" AND windows_phone_development = \"yes\" AND test_impact_analysis = \"no\"", "context": "CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)", "question": "Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?" }
### QUESTION what is the average population when the regional county municipality is le domaine-du-roy, the type is m and the region is less than 2? ### CONTEXT CREATE TABLE table_name_19 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, type VARCHAR) ### ANSWER SELECT AVG(population) FROM table_name_19 WHERE regional_county_municipality = "le domaine-du-roy" AND type = "m" AND region < 2</s>
{ "answer": "SELECT AVG(population) FROM table_name_19 WHERE regional_county_municipality = \"le domaine-du-roy\" AND type = \"m\" AND region < 2", "context": "CREATE TABLE table_name_19 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)", "question": "what is the average population when the regional county municipality is le domaine-du-roy, the type is m and the region is less than 2?" }
### QUESTION When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club? ### CONTEXT CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR) ### ANSWER SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club"</s>
{ "answer": "SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = \"bicker\" AND name = \"cannon club\"", "context": "CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR)", "question": "When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?" }
### QUESTION How many years have a Surface of clay, and a Score of 4 : 0? ### CONTEXT CREATE TABLE table_name_45 (year VARCHAR, surface VARCHAR, score VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_45 WHERE surface = "clay" AND score = "4 : 0"</s>
{ "answer": "SELECT COUNT(year) FROM table_name_45 WHERE surface = \"clay\" AND score = \"4 : 0\"", "context": "CREATE TABLE table_name_45 (year VARCHAR, surface VARCHAR, score VARCHAR)", "question": "How many years have a Surface of clay, and a Score of 4 : 0?" }
### QUESTION Tell me the club with a replacement of alberto malesani ### CONTEXT CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR) ### ANSWER SELECT club FROM table_name_8 WHERE replacement = "alberto malesani"</s>
{ "answer": "SELECT club FROM table_name_8 WHERE replacement = \"alberto malesani\"", "context": "CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR)", "question": "Tell me the club with a replacement of alberto malesani" }
### QUESTION What team did the Chicago Black Hawks visit on April 20? ### CONTEXT CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR) ### ANSWER SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20"</s>
{ "answer": "SELECT home FROM table_name_92 WHERE visitor = \"chicago black hawks\" AND date = \"april 20\"", "context": "CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR)", "question": "What team did the Chicago Black Hawks visit on April 20?" }
### QUESTION On which date was the high assists Delonte West Earl Watson (6)? ### CONTEXT CREATE TABLE table_name_78 (date VARCHAR, high_assists VARCHAR) ### ANSWER SELECT date FROM table_name_78 WHERE high_assists = "delonte west earl watson (6)"</s>
{ "answer": "SELECT date FROM table_name_78 WHERE high_assists = \"delonte west earl watson (6)\"", "context": "CREATE TABLE table_name_78 (date VARCHAR, high_assists VARCHAR)", "question": "On which date was the high assists Delonte West Earl Watson (6)?" }
### QUESTION What is the date the new york giants were the visiting team and the Final Score was 37-34? ### CONTEXT CREATE TABLE table_name_70 (date VARCHAR, visiting_team VARCHAR, final_score VARCHAR) ### ANSWER SELECT date FROM table_name_70 WHERE visiting_team = "new york giants" AND final_score = "37-34"</s>
{ "answer": "SELECT date FROM table_name_70 WHERE visiting_team = \"new york giants\" AND final_score = \"37-34\"", "context": "CREATE TABLE table_name_70 (date VARCHAR, visiting_team VARCHAR, final_score VARCHAR)", "question": "What is the date the new york giants were the visiting team and the Final Score was 37-34?" }
### QUESTION What year is the event in athens, greece? ### CONTEXT CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_19 WHERE venue = "athens, greece"</s>
{ "answer": "SELECT MAX(year) FROM table_name_19 WHERE venue = \"athens, greece\"", "context": "CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)", "question": "What year is the event in athens, greece?" }
### QUESTION What was the undecided with Roy Barnes at 47%? ### CONTEXT CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR) ### ANSWER SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"</s>
{ "answer": "SELECT undecided FROM table_name_22 WHERE roy_barnes = \"47%\"", "context": "CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR)", "question": "What was the undecided with Roy Barnes at 47%?" }
### QUESTION What week was October 29, 2000? ### CONTEXT CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR) ### ANSWER SELECT COUNT(week) FROM table_name_2 WHERE date = "october 29, 2000"</s>
{ "answer": "SELECT COUNT(week) FROM table_name_2 WHERE date = \"october 29, 2000\"", "context": "CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)", "question": "What week was October 29, 2000?" }
### QUESTION What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs? ### CONTEXT CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR) ### ANSWER SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = "b5252 fs"</s>
{ "answer": "SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = \"b5252 fs\"", "context": "CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR)", "question": "What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs?" }
### QUESTION Which Max 1-min wind mph (km/h) that has Dates active on september22– september28? ### CONTEXT CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR) ### ANSWER SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28"</s>
{ "answer": "SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = \"september22– september28\"", "context": "CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR)", "question": "Which Max 1-min wind mph (km/h) that has Dates active on september22– september28?" }
### QUESTION Which Min press has none Death and seven Storm names? ### CONTEXT CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR) ### ANSWER SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven"</s>
{ "answer": "SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = \"none\" AND storm_name = \"seven\"", "context": "CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR)", "question": "Which Min press has none Death and seven Storm names?" }
### QUESTION What is the cost of 972 Min Press caused 52 death? ### CONTEXT CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR) ### ANSWER SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52"</s>
{ "answer": "SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = \"972\" AND deaths = \"52\"", "context": "CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR)", "question": "What is the cost of 972 Min Press caused 52 death?" }
### QUESTION Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671? ### CONTEXT CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR) ### ANSWER SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671</s>
{ "answer": "SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671", "context": "CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)", "question": "Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671?" }
### QUESTION Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233? ### CONTEXT CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR) ### ANSWER SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233</s>
{ "answer": "SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233", "context": "CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)", "question": "Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233?" }
### QUESTION What is the total number of interview scores that have an evening gown score of 9.543 and an average that is bigger than 9.521? ### CONTEXT CREATE TABLE table_name_59 (interview INTEGER, evening_gown VARCHAR, average VARCHAR) ### ANSWER SELECT SUM(interview) FROM table_name_59 WHERE evening_gown = 9.543 AND average > 9.521</s>
{ "answer": "SELECT SUM(interview) FROM table_name_59 WHERE evening_gown = 9.543 AND average > 9.521", "context": "CREATE TABLE table_name_59 (interview INTEGER, evening_gown VARCHAR, average VARCHAR)", "question": "What is the total number of interview scores that have an evening gown score of 9.543 and an average that is bigger than 9.521?" }
### QUESTION What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4? ### CONTEXT CREATE TABLE table_name_52 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR, state VARCHAR) ### ANSWER SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = "south carolina" AND swimsuit > 9.4</s>
{ "answer": "SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = \"south carolina\" AND swimsuit > 9.4", "context": "CREATE TABLE table_name_52 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR, state VARCHAR)", "question": "What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4?" }
### QUESTION IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER? ### CONTEXT CREATE TABLE table_name_52 (third VARCHAR, events VARCHAR, skip VARCHAR, second VARCHAR) ### ANSWER SELECT third FROM table_name_52 WHERE skip = "sandra peterson" AND second = "joan mccusker" AND events = "1995 stoh"</s>
{ "answer": "SELECT third FROM table_name_52 WHERE skip = \"sandra peterson\" AND second = \"joan mccusker\" AND events = \"1995 stoh\"", "context": "CREATE TABLE table_name_52 (third VARCHAR, events VARCHAR, skip VARCHAR, second VARCHAR)", "question": "IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER?" }