text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What was the Candlelight Records Catalog of Candle053tin format?
### CONTEXT
CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)
### ANSWER
SELECT format FROM table_name_93 WHERE label = "candlelight records" AND catalog = "candle053tin"</s> | {
"answer": "SELECT format FROM table_name_93 WHERE label = \"candlelight records\" AND catalog = \"candle053tin\"",
"context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)",
"question": "What was the Candlelight Records Catalog of Candle053tin format?"
} |
### QUESTION
What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?
### CONTEXT
CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR)
### ANSWER
SELECT city FROM table_name_58 WHERE country = "india" AND airport = "sardar vallabhbhai patel international airport"</s> | {
"answer": "SELECT city FROM table_name_58 WHERE country = \"india\" AND airport = \"sardar vallabhbhai patel international airport\"",
"context": "CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR)",
"question": "What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?"
} |
### QUESTION
Which wicket had 580 runs?
### CONTEXT
CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR)
### ANSWER
SELECT wicket FROM table_name_85 WHERE runs = "580"</s> | {
"answer": "SELECT wicket FROM table_name_85 WHERE runs = \"580\"",
"context": "CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR)",
"question": "Which wicket had 580 runs?"
} |
### QUESTION
What team uses a Cosworth DFV V8 engine and DN9 Chassis?
### CONTEXT
CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)
### ANSWER
SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9"</s> | {
"answer": "SELECT entrant FROM table_name_68 WHERE engine = \"cosworth dfv v8\" AND chassis = \"dn9\"",
"context": "CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)",
"question": "What team uses a Cosworth DFV V8 engine and DN9 Chassis?"
} |
### QUESTION
What is the sum of week number(s) had an attendance of 61,985?
### CONTEXT
CREATE TABLE table_name_95 (week VARCHAR, attendance VARCHAR)
### ANSWER
SELECT COUNT(week) FROM table_name_95 WHERE attendance = 61 OFFSET 985</s> | {
"answer": "SELECT COUNT(week) FROM table_name_95 WHERE attendance = 61 OFFSET 985",
"context": "CREATE TABLE table_name_95 (week VARCHAR, attendance VARCHAR)",
"question": "What is the sum of week number(s) had an attendance of 61,985?"
} |
### QUESTION
When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?
### CONTEXT
CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR)
### ANSWER
SELECT seats FROM table_name_38 WHERE net_gain_loss = "0" AND party = "swedish people's party"</s> | {
"answer": "SELECT seats FROM table_name_38 WHERE net_gain_loss = \"0\" AND party = \"swedish people's party\"",
"context": "CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR)",
"question": "When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?"
} |
### QUESTION
Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?
### CONTEXT
CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)
### ANSWER
SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = "0.86%" AND _number_of_seats_won > 0</s> | {
"answer": "SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = \"0.86%\" AND _number_of_seats_won > 0",
"context": "CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)",
"question": "Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?"
} |
### QUESTION
Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?
### CONTEXT
CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR)
### ANSWER
SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61</s> | {
"answer": "SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61",
"context": "CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR)",
"question": "Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?"
} |
### QUESTION
Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?
### CONTEXT
CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR)
### ANSWER
SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = "96%"</s> | {
"answer": "SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = \"96%\"",
"context": "CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR)",
"question": "Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?"
} |
### QUESTION
What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%?
### CONTEXT
CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR)
### ANSWER
SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = "99%" AND youth_men = "98%"</s> | {
"answer": "SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = \"99%\" AND youth_men = \"98%\"",
"context": "CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR)",
"question": "What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%?"
} |
### QUESTION
Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?
### CONTEXT
CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR)
### ANSWER
SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152</s> | {
"answer": "SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152",
"context": "CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR)",
"question": "Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?"
} |
### QUESTION
What is the percentage of Glendale when Pasadena is 14%?
### CONTEXT
CREATE TABLE table_name_87 (glendale VARCHAR, pasadena VARCHAR)
### ANSWER
SELECT glendale FROM table_name_87 WHERE pasadena = "14%"</s> | {
"answer": "SELECT glendale FROM table_name_87 WHERE pasadena = \"14%\"",
"context": "CREATE TABLE table_name_87 (glendale VARCHAR, pasadena VARCHAR)",
"question": "What is the percentage of Glendale when Pasadena is 14%?"
} |
### QUESTION
Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?
### CONTEXT
CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR)
### ANSWER
SELECT SUM(attendance) FROM table_name_65 WHERE date = "december 22, 1985" AND week < 16</s> | {
"answer": "SELECT SUM(attendance) FROM table_name_65 WHERE date = \"december 22, 1985\" AND week < 16",
"context": "CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR)",
"question": "Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?"
} |
### QUESTION
What language did the word mahjong originate from?
### CONTEXT
CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)
### ANSWER
SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"</s> | {
"answer": "SELECT source_language FROM table_name_31 WHERE meaning = \"mahjong\"",
"context": "CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)",
"question": "What language did the word mahjong originate from?"
} |
### QUESTION
Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich?
### CONTEXT
CREATE TABLE table_name_85 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_85 WHERE partner = "jorge lozano" AND outcome = "runner-up" AND opponents_in_the_final = "udo riglewski michael stich"</s> | {
"answer": "SELECT score_in_the_final FROM table_name_85 WHERE partner = \"jorge lozano\" AND outcome = \"runner-up\" AND opponents_in_the_final = \"udo riglewski michael stich\"",
"context": "CREATE TABLE table_name_85 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR)",
"question": "Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich?"
} |
### QUESTION
What is the lowest 06-10 totals with a pubs 2010 of 68 and a 07-11 totals larger than 305?
### CONTEXT
CREATE TABLE table_name_15 (totals_06_10 INTEGER, pubs_2010 VARCHAR, totals_07_11 VARCHAR)
### ANSWER
SELECT MIN(totals_06_10) FROM table_name_15 WHERE pubs_2010 = 68 AND totals_07_11 > 305</s> | {
"answer": "SELECT MIN(totals_06_10) FROM table_name_15 WHERE pubs_2010 = 68 AND totals_07_11 > 305",
"context": "CREATE TABLE table_name_15 (totals_06_10 INTEGER, pubs_2010 VARCHAR, totals_07_11 VARCHAR)",
"question": "What is the lowest 06-10 totals with a pubs 2010 of 68 and a 07-11 totals larger than 305?"
} |
### QUESTION
What is Team, when Date of Appointment is "10 November 2008"?
### CONTEXT
CREATE TABLE table_name_6 (team VARCHAR, date_of_appointment VARCHAR)
### ANSWER
SELECT team FROM table_name_6 WHERE date_of_appointment = "10 november 2008"</s> | {
"answer": "SELECT team FROM table_name_6 WHERE date_of_appointment = \"10 november 2008\"",
"context": "CREATE TABLE table_name_6 (team VARCHAR, date_of_appointment VARCHAR)",
"question": "What is Team, when Date of Appointment is \"10 November 2008\"?"
} |
### QUESTION
WHAT IS THE TEAM FOR DECEMBER 30?
### CONTEXT
CREATE TABLE table_name_86 (team VARCHAR, date VARCHAR)
### ANSWER
SELECT team FROM table_name_86 WHERE date = "december 30"</s> | {
"answer": "SELECT team FROM table_name_86 WHERE date = \"december 30\"",
"context": "CREATE TABLE table_name_86 (team VARCHAR, date VARCHAR)",
"question": "WHAT IS THE TEAM FOR DECEMBER 30?"
} |
### QUESTION
How many Inhabitants were in the democratic party for an election before 2009 for Mayor of stefano cimatti?
### CONTEXT
CREATE TABLE table_name_3 (inhabitants VARCHAR, election VARCHAR, party VARCHAR, mayor VARCHAR)
### ANSWER
SELECT COUNT(inhabitants) FROM table_name_3 WHERE party = "democratic party" AND mayor = "stefano cimatti" AND election < 2009</s> | {
"answer": "SELECT COUNT(inhabitants) FROM table_name_3 WHERE party = \"democratic party\" AND mayor = \"stefano cimatti\" AND election < 2009",
"context": "CREATE TABLE table_name_3 (inhabitants VARCHAR, election VARCHAR, party VARCHAR, mayor VARCHAR)",
"question": "How many Inhabitants were in the democratic party for an election before 2009 for Mayor of stefano cimatti?"
} |
### QUESTION
What is the home team with the ny rangers as the visitor team?
### CONTEXT
CREATE TABLE table_name_16 (home VARCHAR, visitor VARCHAR)
### ANSWER
SELECT home FROM table_name_16 WHERE visitor = "ny rangers"</s> | {
"answer": "SELECT home FROM table_name_16 WHERE visitor = \"ny rangers\"",
"context": "CREATE TABLE table_name_16 (home VARCHAR, visitor VARCHAR)",
"question": "What is the home team with the ny rangers as the visitor team?"
} |
### QUESTION
What is the listed crowd when essendon is the away squad?
### CONTEXT
CREATE TABLE table_name_68 (crowd VARCHAR, away_team VARCHAR)
### ANSWER
SELECT COUNT(crowd) FROM table_name_68 WHERE away_team = "essendon"</s> | {
"answer": "SELECT COUNT(crowd) FROM table_name_68 WHERE away_team = \"essendon\"",
"context": "CREATE TABLE table_name_68 (crowd VARCHAR, away_team VARCHAR)",
"question": "What is the listed crowd when essendon is the away squad?"
} |
### QUESTION
What is Player, when Figures is source: . last updated: 28 june 2007.?
### CONTEXT
CREATE TABLE table_name_52 (player VARCHAR, figures VARCHAR)
### ANSWER
SELECT player FROM table_name_52 WHERE figures = "source: . last updated: 28 june 2007."</s> | {
"answer": "SELECT player FROM table_name_52 WHERE figures = \"source: . last updated: 28 june 2007.\"",
"context": "CREATE TABLE table_name_52 (player VARCHAR, figures VARCHAR)",
"question": "What is Player, when Figures is source: . last updated: 28 june 2007.?"
} |
### QUESTION
What is Player, when Opponent is source: . last updated: 28 june 2007.?
### CONTEXT
CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)
### ANSWER
SELECT player FROM table_name_17 WHERE opponent = "source: . last updated: 28 june 2007."</s> | {
"answer": "SELECT player FROM table_name_17 WHERE opponent = \"source: . last updated: 28 june 2007.\"",
"context": "CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)",
"question": "What is Player, when Opponent is source: . last updated: 28 june 2007.?"
} |
### QUESTION
For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?
### CONTEXT
CREATE TABLE table_name_47 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team FROM table_name_47 WHERE date = "7 january 1956" AND away_team = "accrington stanley"</s> | {
"answer": "SELECT home_team FROM table_name_47 WHERE date = \"7 january 1956\" AND away_team = \"accrington stanley\"",
"context": "CREATE TABLE table_name_47 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)",
"question": "For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?"
} |
### QUESTION
What home team played at western oval?
### CONTEXT
CREATE TABLE table_name_9 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team FROM table_name_9 WHERE venue = "western oval"</s> | {
"answer": "SELECT home_team FROM table_name_9 WHERE venue = \"western oval\"",
"context": "CREATE TABLE table_name_9 (home_team VARCHAR, venue VARCHAR)",
"question": "What home team played at western oval?"
} |
### QUESTION
WHAT IS THE PLACE WITH A SCORE OF 73-65-73-71=282?
### CONTEXT
CREATE TABLE table_name_84 (place VARCHAR, score VARCHAR)
### ANSWER
SELECT place FROM table_name_84 WHERE score = 73 - 65 - 73 - 71 = 282</s> | {
"answer": "SELECT place FROM table_name_84 WHERE score = 73 - 65 - 73 - 71 = 282",
"context": "CREATE TABLE table_name_84 (place VARCHAR, score VARCHAR)",
"question": "WHAT IS THE PLACE WITH A SCORE OF 73-65-73-71=282?"
} |
### QUESTION
WHAT IS THE TO PAR FOR ERNIE ELS?
### CONTEXT
CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_3 WHERE player = "ernie els"</s> | {
"answer": "SELECT to_par FROM table_name_3 WHERE player = \"ernie els\"",
"context": "CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR)",
"question": "WHAT IS THE TO PAR FOR ERNIE ELS?"
} |
### QUESTION
Which Date has a Score of 112–118?
### CONTEXT
CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_58 WHERE score = "112–118"</s> | {
"answer": "SELECT date FROM table_name_58 WHERE score = \"112–118\"",
"context": "CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)",
"question": "Which Date has a Score of 112–118?"
} |
### QUESTION
Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx?
### CONTEXT
CREATE TABLE table_name_33 (player VARCHAR, pick VARCHAR, new_wnba_team VARCHAR)
### ANSWER
SELECT player FROM table_name_33 WHERE pick < 6 AND new_wnba_team = "minnesota lynx"</s> | {
"answer": "SELECT player FROM table_name_33 WHERE pick < 6 AND new_wnba_team = \"minnesota lynx\"",
"context": "CREATE TABLE table_name_33 (player VARCHAR, pick VARCHAR, new_wnba_team VARCHAR)",
"question": "Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx?"
} |
### QUESTION
What Nation of citizenship has a stock car vehicle with a year of 1999?
### CONTEXT
CREATE TABLE table_name_78 (nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)
### ANSWER
SELECT nation_of_citizenship FROM table_name_78 WHERE type_of_vehicle = "stock car" AND year = 1999</s> | {
"answer": "SELECT nation_of_citizenship FROM table_name_78 WHERE type_of_vehicle = \"stock car\" AND year = 1999",
"context": "CREATE TABLE table_name_78 (nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)",
"question": "What Nation of citizenship has a stock car vehicle with a year of 1999?"
} |
### QUESTION
What is Points, when Series is Queensland Formula Ford Championship, and when Position is 1st?
### CONTEXT
CREATE TABLE table_name_40 (points VARCHAR, series VARCHAR, position VARCHAR)
### ANSWER
SELECT points FROM table_name_40 WHERE series = "queensland formula ford championship" AND position = "1st"</s> | {
"answer": "SELECT points FROM table_name_40 WHERE series = \"queensland formula ford championship\" AND position = \"1st\"",
"context": "CREATE TABLE table_name_40 (points VARCHAR, series VARCHAR, position VARCHAR)",
"question": "What is Points, when Series is Queensland Formula Ford Championship, and when Position is 1st?"
} |
### QUESTION
What is Position, when Series is Queensland Formula Ford Championship, when Season is after 2001, and when Points is 234?
### CONTEXT
CREATE TABLE table_name_48 (position VARCHAR, points VARCHAR, series VARCHAR, season VARCHAR)
### ANSWER
SELECT position FROM table_name_48 WHERE series = "queensland formula ford championship" AND season > 2001 AND points = "234"</s> | {
"answer": "SELECT position FROM table_name_48 WHERE series = \"queensland formula ford championship\" AND season > 2001 AND points = \"234\"",
"context": "CREATE TABLE table_name_48 (position VARCHAR, points VARCHAR, series VARCHAR, season VARCHAR)",
"question": "What is Position, when Series is Queensland Formula Ford Championship, when Season is after 2001, and when Points is 234?"
} |
### QUESTION
Which Height Metres / feet has a Rank of 8, and Floors of 3x17?
### CONTEXT
CREATE TABLE table_name_18 (height_metres___feet VARCHAR, rank VARCHAR, floors VARCHAR)
### ANSWER
SELECT height_metres___feet FROM table_name_18 WHERE rank = 8 AND floors = "3x17"</s> | {
"answer": "SELECT height_metres___feet FROM table_name_18 WHERE rank = 8 AND floors = \"3x17\"",
"context": "CREATE TABLE table_name_18 (height_metres___feet VARCHAR, rank VARCHAR, floors VARCHAR)",
"question": "Which Height Metres / feet has a Rank of 8, and Floors of 3x17?"
} |
### QUESTION
Who was the opponent in London, England in a round less than 2?
### CONTEXT
CREATE TABLE table_name_62 (opponent VARCHAR, location VARCHAR, round VARCHAR)
### ANSWER
SELECT opponent FROM table_name_62 WHERE location = "london, england" AND round < 2</s> | {
"answer": "SELECT opponent FROM table_name_62 WHERE location = \"london, england\" AND round < 2",
"context": "CREATE TABLE table_name_62 (opponent VARCHAR, location VARCHAR, round VARCHAR)",
"question": "Who was the opponent in London, England in a round less than 2?"
} |
### QUESTION
What is the score for the game where Birmingham City was the home team on 10 March 1984?
### CONTEXT
CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR, home_team VARCHAR)
### ANSWER
SELECT score FROM table_name_86 WHERE date = "10 march 1984" AND home_team = "birmingham city"</s> | {
"answer": "SELECT score FROM table_name_86 WHERE date = \"10 march 1984\" AND home_team = \"birmingham city\"",
"context": "CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR, home_team VARCHAR)",
"question": "What is the score for the game where Birmingham City was the home team on 10 March 1984?"
} |
### QUESTION
Which years did the player from Providence play for the Grizzlies as small forward?
### CONTEXT
CREATE TABLE table_name_96 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT years_for_grizzlies FROM table_name_96 WHERE position = "small forward" AND school_club_team = "providence"</s> | {
"answer": "SELECT years_for_grizzlies FROM table_name_96 WHERE position = \"small forward\" AND school_club_team = \"providence\"",
"context": "CREATE TABLE table_name_96 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR)",
"question": "Which years did the player from Providence play for the Grizzlies as small forward?"
} |
### QUESTION
For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?
### CONTEXT
CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR)
### ANSWER
SELECT record FROM table_name_68 WHERE location = "boston garden" AND score = "118-110"</s> | {
"answer": "SELECT record FROM table_name_68 WHERE location = \"boston garden\" AND score = \"118-110\"",
"context": "CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR)",
"question": "For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?"
} |
### QUESTION
What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"?
### CONTEXT
CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
### ANSWER
SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = "1962 , 1967"</s> | {
"answer": "SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = \"1962 , 1967\"",
"context": "CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)",
"question": "What is Player, when To Par is greater than 6, and when Year(s) Won is \"1962 , 1967\"?"
} |
### QUESTION
What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?
### CONTEXT
CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR)
### ANSWER
SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"</s> | {
"answer": "SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = \"t12\" AND player = \"julius boros\"",
"context": "CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR)",
"question": "What is the Total, when To Par is less than 14, when Finish is T12, and when Player is \"Julius Boros\"?"
} |
### QUESTION
Which state contains the University of Iowa in the mideast region?
### CONTEXT
CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR)
### ANSWER
SELECT state FROM table_name_67 WHERE region = "mideast" AND host = "university of iowa"</s> | {
"answer": "SELECT state FROM table_name_67 WHERE region = \"mideast\" AND host = \"university of iowa\"",
"context": "CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR)",
"question": "Which state contains the University of Iowa in the mideast region?"
} |
### QUESTION
What is the name of the driver with a rotax max engine, in the rotax heavy class, with arrow as chassis and on the TWR Raceline Seating team?
### CONTEXT
CREATE TABLE table_name_32 (driver VARCHAR, team VARCHAR, chassis VARCHAR, engine VARCHAR, class VARCHAR)
### ANSWER
SELECT driver FROM table_name_32 WHERE engine = "rotax max" AND class = "rotax heavy" AND chassis = "arrow" AND team = "twr raceline seating"</s> | {
"answer": "SELECT driver FROM table_name_32 WHERE engine = \"rotax max\" AND class = \"rotax heavy\" AND chassis = \"arrow\" AND team = \"twr raceline seating\"",
"context": "CREATE TABLE table_name_32 (driver VARCHAR, team VARCHAR, chassis VARCHAR, engine VARCHAR, class VARCHAR)",
"question": "What is the name of the driver with a rotax max engine, in the rotax heavy class, with arrow as chassis and on the TWR Raceline Seating team?"
} |
### QUESTION
What type of engine does the BF Racing Marron Excavations have that also has Monaco as chassis and Lee Filliponi as the driver?
### CONTEXT
CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR, team VARCHAR, chassis VARCHAR)
### ANSWER
SELECT engine FROM table_name_94 WHERE team = "bf racing marron excavations" AND chassis = "monaco" AND driver = "lee filliponi"</s> | {
"answer": "SELECT engine FROM table_name_94 WHERE team = \"bf racing marron excavations\" AND chassis = \"monaco\" AND driver = \"lee filliponi\"",
"context": "CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR, team VARCHAR, chassis VARCHAR)",
"question": "What type of engine does the BF Racing Marron Excavations have that also has Monaco as chassis and Lee Filliponi as the driver?"
} |
### QUESTION
What is the Championship Game that has 4 Bids and a .600 Win %?
### CONTEXT
CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR)
### ANSWER
SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = ".600"</s> | {
"answer": "SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = \".600\"",
"context": "CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR)",
"question": "What is the Championship Game that has 4 Bids and a .600 Win %?"
} |
### QUESTION
Which average Played has a Drawn smaller than 1, and Points larger than 4?
### CONTEXT
CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR)
### ANSWER
SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4</s> | {
"answer": "SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4",
"context": "CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR)",
"question": "Which average Played has a Drawn smaller than 1, and Points larger than 4?"
} |
### QUESTION
What was the attendance on 31 January 2009 when the opponent was Airdrie United?
### CONTEXT
CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_33 WHERE opponent = "airdrie united" AND date = "31 january 2009"</s> | {
"answer": "SELECT AVG(attendance) FROM table_name_33 WHERE opponent = \"airdrie united\" AND date = \"31 january 2009\"",
"context": "CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR)",
"question": "What was the attendance on 31 January 2009 when the opponent was Airdrie United?"
} |
### QUESTION
Which Position has a Played larger than 9?
### CONTEXT
CREATE TABLE table_name_32 (position INTEGER, played INTEGER)
### ANSWER
SELECT SUM(position) FROM table_name_32 WHERE played > 9</s> | {
"answer": "SELECT SUM(position) FROM table_name_32 WHERE played > 9",
"context": "CREATE TABLE table_name_32 (position INTEGER, played INTEGER)",
"question": "Which Position has a Played larger than 9?"
} |
### QUESTION
What's the highest First Elected with a Result of Re-elected and DIstrict of California 5?
### CONTEXT
CREATE TABLE table_name_21 (first_elected INTEGER, result VARCHAR, district VARCHAR)
### ANSWER
SELECT MAX(first_elected) FROM table_name_21 WHERE result = "re-elected" AND district = "california 5"</s> | {
"answer": "SELECT MAX(first_elected) FROM table_name_21 WHERE result = \"re-elected\" AND district = \"california 5\"",
"context": "CREATE TABLE table_name_21 (first_elected INTEGER, result VARCHAR, district VARCHAR)",
"question": "What's the highest First Elected with a Result of Re-elected and DIstrict of California 5?"
} |
### QUESTION
What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?
### CONTEXT
CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR)
### ANSWER
SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj"</s> | {
"answer": "SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = \"mj\"",
"context": "CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR)",
"question": "What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?"
} |
### QUESTION
Which Incumbent has a District of California 5?
### CONTEXT
CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)
### ANSWER
SELECT incumbent FROM table_name_99 WHERE district = "california 5"</s> | {
"answer": "SELECT incumbent FROM table_name_99 WHERE district = \"california 5\"",
"context": "CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)",
"question": "Which Incumbent has a District of California 5?"
} |
### QUESTION
Name the venue for friendly competition october 16, 2012
### CONTEXT
CREATE TABLE table_name_89 (venue VARCHAR, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT venue FROM table_name_89 WHERE competition = "friendly" AND date = "october 16, 2012"</s> | {
"answer": "SELECT venue FROM table_name_89 WHERE competition = \"friendly\" AND date = \"october 16, 2012\"",
"context": "CREATE TABLE table_name_89 (venue VARCHAR, competition VARCHAR, date VARCHAR)",
"question": "Name the venue for friendly competition october 16, 2012"
} |
### QUESTION
Which tracking method has a latest stable release of 2.23-05?
### CONTEXT
CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR)
### ANSWER
SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = "2.23-05"</s> | {
"answer": "SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = \"2.23-05\"",
"context": "CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR)",
"question": "Which tracking method has a latest stable release of 2.23-05?"
} |
### QUESTION
What is the total rank of the airport that has 79,290 passengers?
### CONTEXT
CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR)
### ANSWER
SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290</s> | {
"answer": "SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290",
"context": "CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR)",
"question": "What is the total rank of the airport that has 79,290 passengers?"
} |
### QUESTION
Who is the Winning Driver that has a Winning team of Engstler Motorsport Engstler Motorsport and also the Date 22 July?
### CONTEXT
CREATE TABLE table_name_55 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)
### ANSWER
SELECT winning_driver FROM table_name_55 WHERE winning_team = "engstler motorsport engstler motorsport" AND date = "22 july"</s> | {
"answer": "SELECT winning_driver FROM table_name_55 WHERE winning_team = \"engstler motorsport engstler motorsport\" AND date = \"22 july\"",
"context": "CREATE TABLE table_name_55 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)",
"question": "Who is the Winning Driver that has a Winning team of Engstler Motorsport Engstler Motorsport and also the Date 22 July?"
} |
### QUESTION
What Round was the Winning Team Engstler Motorsport Maurer Motorsport?
### CONTEXT
CREATE TABLE table_name_26 (round VARCHAR, winning_team VARCHAR)
### ANSWER
SELECT round FROM table_name_26 WHERE winning_team = "engstler motorsport maurer motorsport"</s> | {
"answer": "SELECT round FROM table_name_26 WHERE winning_team = \"engstler motorsport maurer motorsport\"",
"context": "CREATE TABLE table_name_26 (round VARCHAR, winning_team VARCHAR)",
"question": "What Round was the Winning Team Engstler Motorsport Maurer Motorsport?"
} |
### QUESTION
What is the award for the Star Awards earlier than 2005 and the result is won?
### CONTEXT
CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR)
### ANSWER
SELECT award FROM table_name_31 WHERE organisation = "star awards" AND year < 2005 AND result = "won"</s> | {
"answer": "SELECT award FROM table_name_31 WHERE organisation = \"star awards\" AND year < 2005 AND result = \"won\"",
"context": "CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR)",
"question": "What is the award for the Star Awards earlier than 2005 and the result is won?"
} |
### QUESTION
Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?
### CONTEXT
CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR)
### ANSWER
SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = "4:3" AND hours = "20:30" AND days_of_the_week = "monday, wednesday, friday"</s> | {
"answer": "SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = \"4:3\" AND hours = \"20:30\" AND days_of_the_week = \"monday, wednesday, friday\"",
"context": "CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR)",
"question": "Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?"
} |
### QUESTION
Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3?
### CONTEXT
CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)
### ANSWER
SELECT outcome FROM table_name_61 WHERE championship = "us championships" AND score_in_the_final = "5–7, 6–1, 6–3, 6–3"</s> | {
"answer": "SELECT outcome FROM table_name_61 WHERE championship = \"us championships\" AND score_in_the_final = \"5–7, 6–1, 6–3, 6–3\"",
"context": "CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)",
"question": "Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3?"
} |
### QUESTION
What is the Position of Pick #321?
### CONTEXT
CREATE TABLE table_name_97 (position VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT position FROM table_name_97 WHERE pick__number = 321</s> | {
"answer": "SELECT position FROM table_name_97 WHERE pick__number = 321",
"context": "CREATE TABLE table_name_97 (position VARCHAR, pick__number VARCHAR)",
"question": "What is the Position of Pick #321?"
} |
### QUESTION
What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?
### CONTEXT
CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR)
### ANSWER
SELECT judaism FROM table_name_15 WHERE other = "0.13%" AND buddhism = "0.01%"</s> | {
"answer": "SELECT judaism FROM table_name_15 WHERE other = \"0.13%\" AND buddhism = \"0.01%\"",
"context": "CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR)",
"question": "What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?"
} |
### QUESTION
What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team?
### CONTEXT
CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_name_76 WHERE winning_team = "audi sport team abt" AND circuit = "oschersleben"</s> | {
"answer": "SELECT fastest_lap FROM table_name_76 WHERE winning_team = \"audi sport team abt\" AND circuit = \"oschersleben\"",
"context": "CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)",
"question": "What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team?"
} |
### QUESTION
What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver?
### CONTEXT
CREATE TABLE table_name_15 (winning_team VARCHAR, date VARCHAR, winning_manufacturer VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT winning_team FROM table_name_15 WHERE winning_manufacturer = "audi" AND winning_driver = "timo scheider" AND date = "31 august"</s> | {
"answer": "SELECT winning_team FROM table_name_15 WHERE winning_manufacturer = \"audi\" AND winning_driver = \"timo scheider\" AND date = \"31 august\"",
"context": "CREATE TABLE table_name_15 (winning_team VARCHAR, date VARCHAR, winning_manufacturer VARCHAR, winning_driver VARCHAR)",
"question": "What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver?"
} |
### QUESTION
Who is the winning driver of the race with no race as the winning manufacturer?
### CONTEXT
CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_manufacturer VARCHAR)
### ANSWER
SELECT winning_driver FROM table_name_66 WHERE winning_manufacturer = "no race"</s> | {
"answer": "SELECT winning_driver FROM table_name_66 WHERE winning_manufacturer = \"no race\"",
"context": "CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_manufacturer VARCHAR)",
"question": "Who is the winning driver of the race with no race as the winning manufacturer?"
} |
### QUESTION
Which Grid has a Rider of randy de puniet, and Laps smaller than 24?
### CONTEXT
CREATE TABLE table_name_11 (grid INTEGER, rider VARCHAR, laps VARCHAR)
### ANSWER
SELECT MAX(grid) FROM table_name_11 WHERE rider = "randy de puniet" AND laps < 24</s> | {
"answer": "SELECT MAX(grid) FROM table_name_11 WHERE rider = \"randy de puniet\" AND laps < 24",
"context": "CREATE TABLE table_name_11 (grid INTEGER, rider VARCHAR, laps VARCHAR)",
"question": "Which Grid has a Rider of randy de puniet, and Laps smaller than 24?"
} |
### QUESTION
Who was the home team on June 9?
### CONTEXT
CREATE TABLE table_name_81 (home VARCHAR, date VARCHAR)
### ANSWER
SELECT home FROM table_name_81 WHERE date = "june 9"</s> | {
"answer": "SELECT home FROM table_name_81 WHERE date = \"june 9\"",
"context": "CREATE TABLE table_name_81 (home VARCHAR, date VARCHAR)",
"question": "Who was the home team on June 9?"
} |
### QUESTION
Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?
### CONTEXT
CREATE TABLE table_name_19 (name VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR, round VARCHAR)
### ANSWER
SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = "nebraska"</s> | {
"answer": "SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = \"nebraska\"",
"context": "CREATE TABLE table_name_19 (name VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR, round VARCHAR)",
"question": "Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?"
} |
### QUESTION
Which Score has an Opponent of melanie south?
### CONTEXT
CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
### ANSWER
SELECT score FROM table_name_58 WHERE opponent = "melanie south"</s> | {
"answer": "SELECT score FROM table_name_58 WHERE opponent = \"melanie south\"",
"context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)",
"question": "Which Score has an Opponent of melanie south?"
} |
### QUESTION
WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG?
### CONTEXT
CREATE TABLE table_name_3 (date_of_appointment VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT date_of_appointment FROM table_name_3 WHERE position_in_table = "pre-season" AND replaced_by = "thomas thomasberg"</s> | {
"answer": "SELECT date_of_appointment FROM table_name_3 WHERE position_in_table = \"pre-season\" AND replaced_by = \"thomas thomasberg\"",
"context": "CREATE TABLE table_name_3 (date_of_appointment VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)",
"question": "WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG?"
} |
### QUESTION
Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolonged?
### CONTEXT
CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)
### ANSWER
SELECT prothrombin_time FROM table_name_28 WHERE platelet_count = "unaffected" AND bleeding_time = "unaffected" AND partial_thromboplastin_time = "normal or mildly prolonged"</s> | {
"answer": "SELECT prothrombin_time FROM table_name_28 WHERE platelet_count = \"unaffected\" AND bleeding_time = \"unaffected\" AND partial_thromboplastin_time = \"normal or mildly prolonged\"",
"context": "CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)",
"question": "Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolonged?"
} |
### QUESTION
What is the score when Biron got the decision and Philadelphia was the visitor on March 1?
### CONTEXT
CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)
### ANSWER
SELECT score FROM table_name_38 WHERE decision = "biron" AND visitor = "philadelphia" AND date = "march 1"</s> | {
"answer": "SELECT score FROM table_name_38 WHERE decision = \"biron\" AND visitor = \"philadelphia\" AND date = \"march 1\"",
"context": "CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)",
"question": "What is the score when Biron got the decision and Philadelphia was the visitor on March 1?"
} |
### QUESTION
Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?
### CONTEXT
CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
### ANSWER
SELECT condition FROM table_name_53 WHERE bleeding_time = "unaffected" AND partial_thromboplastin_time = "prolonged" AND prothrombin_time = "unaffected"</s> | {
"answer": "SELECT condition FROM table_name_53 WHERE bleeding_time = \"unaffected\" AND partial_thromboplastin_time = \"prolonged\" AND prothrombin_time = \"unaffected\"",
"context": "CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)",
"question": "Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?"
} |
### QUESTION
What is the score on december 10?
### CONTEXT
CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_98 WHERE date = "december 10"</s> | {
"answer": "SELECT score FROM table_name_98 WHERE date = \"december 10\"",
"context": "CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)",
"question": "What is the score on december 10?"
} |
### QUESTION
What is the location of the race on 11 November?
### CONTEXT
CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR)
### ANSWER
SELECT location FROM table_name_14 WHERE date = "11 november"</s> | {
"answer": "SELECT location FROM table_name_14 WHERE date = \"11 november\"",
"context": "CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR)",
"question": "What is the location of the race on 11 November?"
} |
### QUESTION
Which country had a release of 1 VCD titled Martial Law: Substitutes?
### CONTEXT
CREATE TABLE table_name_93 (country VARCHAR, notes VARCHAR, release_title VARCHAR)
### ANSWER
SELECT country FROM table_name_93 WHERE notes = "1 vcd" AND release_title = "martial law: substitutes"</s> | {
"answer": "SELECT country FROM table_name_93 WHERE notes = \"1 vcd\" AND release_title = \"martial law: substitutes\"",
"context": "CREATE TABLE table_name_93 (country VARCHAR, notes VARCHAR, release_title VARCHAR)",
"question": "Which country had a release of 1 VCD titled Martial Law: Substitutes?"
} |
### QUESTION
What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37–13?
### CONTEXT
CREATE TABLE table_name_98 (loser VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)
### ANSWER
SELECT loser FROM table_name_98 WHERE winner = "new york jets" AND year < 1994 AND result = "37–13"</s> | {
"answer": "SELECT loser FROM table_name_98 WHERE winner = \"new york jets\" AND year < 1994 AND result = \"37–13\"",
"context": "CREATE TABLE table_name_98 (loser VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)",
"question": "What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37–13?"
} |
### QUESTION
What is the year when the Winner was the new york jets, with a Result of 24–17, played at giants stadium?
### CONTEXT
CREATE TABLE table_name_39 (year INTEGER, location VARCHAR, winner VARCHAR, result VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_39 WHERE winner = "new york jets" AND result = "24–17" AND location = "giants stadium"</s> | {
"answer": "SELECT SUM(year) FROM table_name_39 WHERE winner = \"new york jets\" AND result = \"24–17\" AND location = \"giants stadium\"",
"context": "CREATE TABLE table_name_39 (year INTEGER, location VARCHAR, winner VARCHAR, result VARCHAR)",
"question": "What is the year when the Winner was the new york jets, with a Result of 24–17, played at giants stadium?"
} |
### QUESTION
What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?
### CONTEXT
CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)
### ANSWER
SELECT MIN(pick__number) FROM table_name_62 WHERE position = "rec" AND cfl_team = "hamilton tiger-cats"</s> | {
"answer": "SELECT MIN(pick__number) FROM table_name_62 WHERE position = \"rec\" AND cfl_team = \"hamilton tiger-cats\"",
"context": "CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)",
"question": "What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?"
} |
### QUESTION
What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?
### CONTEXT
CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR)
### ANSWER
SELECT AVG(game) FROM table_name_49 WHERE opponent = "toronto maple leafs" AND february < 17</s> | {
"answer": "SELECT AVG(game) FROM table_name_49 WHERE opponent = \"toronto maple leafs\" AND february < 17",
"context": "CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR)",
"question": "What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?"
} |
### QUESTION
With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results¹?
### CONTEXT
CREATE TABLE table_name_82 (results¹ VARCHAR, date VARCHAR, type_of_game VARCHAR, city VARCHAR)
### ANSWER
SELECT results¹ FROM table_name_82 WHERE type_of_game = "friendly" AND city = "belgrade" AND date = "november 2"</s> | {
"answer": "SELECT results¹ FROM table_name_82 WHERE type_of_game = \"friendly\" AND city = \"belgrade\" AND date = \"november 2\"",
"context": "CREATE TABLE table_name_82 (results¹ VARCHAR, date VARCHAR, type_of_game VARCHAR, city VARCHAR)",
"question": "With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results¹?"
} |
### QUESTION
What is the version shown for the Length of 4:58?
### CONTEXT
CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR)
### ANSWER
SELECT version FROM table_name_1 WHERE length = "4:58"</s> | {
"answer": "SELECT version FROM table_name_1 WHERE length = \"4:58\"",
"context": "CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR)",
"question": "What is the version shown for the Length of 4:58?"
} |
### QUESTION
Score of postponed (rain) rescheduled for June 27 had what loss?
### CONTEXT
CREATE TABLE table_name_32 (loss VARCHAR, score VARCHAR)
### ANSWER
SELECT loss FROM table_name_32 WHERE score = "postponed (rain) rescheduled for june 27"</s> | {
"answer": "SELECT loss FROM table_name_32 WHERE score = \"postponed (rain) rescheduled for june 27\"",
"context": "CREATE TABLE table_name_32 (loss VARCHAR, score VARCHAR)",
"question": "Score of postponed (rain) rescheduled for June 27 had what loss?"
} |
### QUESTION
How many laps led when the Grid was 15?
### CONTEXT
CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR)
### ANSWER
SELECT laps AS Led FROM table_name_29 WHERE grid = "15"</s> | {
"answer": "SELECT laps AS Led FROM table_name_29 WHERE grid = \"15\"",
"context": "CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR)",
"question": "How many laps led when the Grid was 15?"
} |
### QUESTION
What is the coronie with a 0.7% nickerie?
### CONTEXT
CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)
### ANSWER
SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%"</s> | {
"answer": "SELECT coronie FROM table_name_92 WHERE nickerie = \"0.7%\"",
"context": "CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)",
"question": "What is the coronie with a 0.7% nickerie?"
} |
### QUESTION
What is the Name of the SS5 Stage?
### CONTEXT
CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)
### ANSWER
SELECT name FROM table_name_90 WHERE stage = "ss5"</s> | {
"answer": "SELECT name FROM table_name_90 WHERE stage = \"ss5\"",
"context": "CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)",
"question": "What is the Name of the SS5 Stage?"
} |
### QUESTION
What is the suriname with a 16.8% brokopondo?
### CONTEXT
CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)
### ANSWER
SELECT suriname FROM table_name_62 WHERE brokopondo = "16.8%"</s> | {
"answer": "SELECT suriname FROM table_name_62 WHERE brokopondo = \"16.8%\"",
"context": "CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)",
"question": "What is the suriname with a 16.8% brokopondo?"
} |
### QUESTION
What is the sum of the total number of medals when silver is less than 0?
### CONTEXT
CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)
### ANSWER
SELECT COUNT(total) FROM table_name_54 WHERE silver < 0</s> | {
"answer": "SELECT COUNT(total) FROM table_name_54 WHERE silver < 0",
"context": "CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)",
"question": "What is the sum of the total number of medals when silver is less than 0?"
} |
### QUESTION
What is Term Start, when Born-Died is Prime Ministers 1939 - 1943?
### CONTEXT
CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR)
### ANSWER
SELECT term_start FROM table_name_53 WHERE born_died = "prime ministers 1939 - 1943"</s> | {
"answer": "SELECT term_start FROM table_name_53 WHERE born_died = \"prime ministers 1939 - 1943\"",
"context": "CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR)",
"question": "What is Term Start, when Born-Died is Prime Ministers 1939 - 1943?"
} |
### QUESTION
Name the week 3 for team of mark/jennifer
### CONTEXT
CREATE TABLE table_name_99 (week_3 VARCHAR, team VARCHAR)
### ANSWER
SELECT week_3 FROM table_name_99 WHERE team = "mark/jennifer"</s> | {
"answer": "SELECT week_3 FROM table_name_99 WHERE team = \"mark/jennifer\"",
"context": "CREATE TABLE table_name_99 (week_3 VARCHAR, team VARCHAR)",
"question": "Name the week 3 for team of mark/jennifer"
} |
### QUESTION
What is the purpose for Frequency of 102.3?
### CONTEXT
CREATE TABLE table_name_65 (purpose VARCHAR, frequency VARCHAR)
### ANSWER
SELECT purpose FROM table_name_65 WHERE frequency = "102.3"</s> | {
"answer": "SELECT purpose FROM table_name_65 WHERE frequency = \"102.3\"",
"context": "CREATE TABLE table_name_65 (purpose VARCHAR, frequency VARCHAR)",
"question": "What is the purpose for Frequency of 102.3?"
} |
### QUESTION
What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?
### CONTEXT
CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = "3"</s> | {
"answer": "SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = \"3\"",
"context": "CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR)",
"question": "What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?"
} |
### QUESTION
What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?
### CONTEXT
CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_40 WHERE director = "erik clausen" AND english_title = "the dark side of the moon"</s> | {
"answer": "SELECT SUM(year) FROM table_name_40 WHERE director = \"erik clausen\" AND english_title = \"the dark side of the moon\"",
"context": "CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR)",
"question": "What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?"
} |
### QUESTION
Name the region with catalog of 576 097-2
### CONTEXT
CREATE TABLE table_name_47 (region VARCHAR, catalog VARCHAR)
### ANSWER
SELECT region FROM table_name_47 WHERE catalog = "576 097-2"</s> | {
"answer": "SELECT region FROM table_name_47 WHERE catalog = \"576 097-2\"",
"context": "CREATE TABLE table_name_47 (region VARCHAR, catalog VARCHAR)",
"question": "Name the region with catalog of 576 097-2"
} |
### QUESTION
What school has a public nickname, founded after 1838 in Harrisonburg, Va?
### CONTEXT
CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR)
### ANSWER
SELECT nickname FROM table_name_38 WHERE affiliation = "public" AND founded > 1838 AND location = "harrisonburg, va"</s> | {
"answer": "SELECT nickname FROM table_name_38 WHERE affiliation = \"public\" AND founded > 1838 AND location = \"harrisonburg, va\"",
"context": "CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR)",
"question": "What school has a public nickname, founded after 1838 in Harrisonburg, Va?"
} |
### QUESTION
What is Second Vice President, when Third Vice President is "Gen. Juan Alonso", and when Inaugurated is "15 March 1940"?
### CONTEXT
CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR)
### ANSWER
SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = "gen. juan alonso" AND inaugurated = "15 march 1940"</s> | {
"answer": "SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = \"gen. juan alonso\" AND inaugurated = \"15 march 1940\"",
"context": "CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR)",
"question": "What is Second Vice President, when Third Vice President is \"Gen. Juan Alonso\", and when Inaugurated is \"15 March 1940\"?"
} |
### QUESTION
What is Left Office, when Inaugurate is "15 March 1930"?
### CONTEXT
CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR)
### ANSWER
SELECT left_office FROM table_name_1 WHERE inaugurated = "15 march 1930"</s> | {
"answer": "SELECT left_office FROM table_name_1 WHERE inaugurated = \"15 march 1930\"",
"context": "CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR)",
"question": "What is Left Office, when Inaugurate is \"15 March 1930\"?"
} |
### QUESTION
Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?
### CONTEXT
CREATE TABLE table_name_79 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, user_selectable_themes VARCHAR, unread_message_tracking VARCHAR)
### ANSWER
SELECT wysiwyg_editor FROM table_name_79 WHERE user_selectable_themes = "yes" AND unread_message_tracking = "session" AND image_attachment = "plugin"</s> | {
"answer": "SELECT wysiwyg_editor FROM table_name_79 WHERE user_selectable_themes = \"yes\" AND unread_message_tracking = \"session\" AND image_attachment = \"plugin\"",
"context": "CREATE TABLE table_name_79 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, user_selectable_themes VARCHAR, unread_message_tracking VARCHAR)",
"question": "Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?"
} |
### QUESTION
Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin?
### CONTEXT
CREATE TABLE table_name_75 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, calendar VARCHAR)
### ANSWER
SELECT wysiwyg_editor FROM table_name_75 WHERE image_attachment = "yes" AND calendar = "plugin"</s> | {
"answer": "SELECT wysiwyg_editor FROM table_name_75 WHERE image_attachment = \"yes\" AND calendar = \"plugin\"",
"context": "CREATE TABLE table_name_75 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, calendar VARCHAR)",
"question": "Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin?"
} |
### QUESTION
Which Calendar has a WYSIWYG Editor of no, and an Unread message tracking of session, and an Image attachment of no?
### CONTEXT
CREATE TABLE table_name_91 (calendar VARCHAR, image_attachment VARCHAR, wysiwyg_editor VARCHAR, unread_message_tracking VARCHAR)
### ANSWER
SELECT calendar FROM table_name_91 WHERE wysiwyg_editor = "no" AND unread_message_tracking = "session" AND image_attachment = "no"</s> | {
"answer": "SELECT calendar FROM table_name_91 WHERE wysiwyg_editor = \"no\" AND unread_message_tracking = \"session\" AND image_attachment = \"no\"",
"context": "CREATE TABLE table_name_91 (calendar VARCHAR, image_attachment VARCHAR, wysiwyg_editor VARCHAR, unread_message_tracking VARCHAR)",
"question": "Which Calendar has a WYSIWYG Editor of no, and an Unread message tracking of session, and an Image attachment of no?"
} |
### QUESTION
What is the english title with a lp format and an Original title of то ли ещё будет?
### CONTEXT
CREATE TABLE table_name_49 (title_in_english VARCHAR, format VARCHAR, original_title VARCHAR)
### ANSWER
SELECT title_in_english FROM table_name_49 WHERE format = "lp" AND original_title = "то ли ещё будет"</s> | {
"answer": "SELECT title_in_english FROM table_name_49 WHERE format = \"lp\" AND original_title = \"то ли ещё будет\"",
"context": "CREATE TABLE table_name_49 (title_in_english VARCHAR, format VARCHAR, original_title VARCHAR)",
"question": "What is the english title with a lp format and an Original title of то ли ещё будет?"
} |
### QUESTION
What was the round when he fought Joe Stevenson?
### CONTEXT
CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR)
### ANSWER
SELECT round FROM table_name_26 WHERE opponent = "joe stevenson"</s> | {
"answer": "SELECT round FROM table_name_26 WHERE opponent = \"joe stevenson\"",
"context": "CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR)",
"question": "What was the round when he fought Joe Stevenson?"
} |
### QUESTION
Who was the opponent when they played at Delta Center with a record of 27-13?
### CONTEXT
CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT opponent FROM table_name_7 WHERE location_attendance = "delta center" AND record = "27-13"</s> | {
"answer": "SELECT opponent FROM table_name_7 WHERE location_attendance = \"delta center\" AND record = \"27-13\"",
"context": "CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR)",
"question": "Who was the opponent when they played at Delta Center with a record of 27-13?"
} |
Subsets and Splits