text
stringlengths
146
1.06k
source
dict
### QUESTION What is the Label of the release with Catalog number LPM-2899? ### CONTEXT CREATE TABLE table_name_87 (label VARCHAR, catalog VARCHAR) ### ANSWER SELECT label FROM table_name_87 WHERE catalog = "lpm-2899"
{ "answer": "SELECT label FROM table_name_87 WHERE catalog = \"lpm-2899\"", "context": "CREATE TABLE table_name_87 (label VARCHAR, catalog VARCHAR)", "question": "What is the Label of the release with Catalog number LPM-2899?" }
### QUESTION For Once Municipal, what were the goals scored that had less than 27 points and greater than place 1? ### CONTEXT CREATE TABLE table_name_69 (goals_scored INTEGER, points VARCHAR, place VARCHAR, team VARCHAR) ### ANSWER SELECT AVG(goals_scored) FROM table_name_69 WHERE place > 1 AND team = "once municipal" AND points < 27
{ "answer": "SELECT AVG(goals_scored) FROM table_name_69 WHERE place > 1 AND team = \"once municipal\" AND points < 27", "context": "CREATE TABLE table_name_69 (goals_scored INTEGER, points VARCHAR, place VARCHAR, team VARCHAR)", "question": "For Once Municipal, what were the goals scored that had less than 27 points and greater than place 1?" }
### QUESTION Name the start of an event in Catagory 2 of the year 1947. ### CONTEXT CREATE TABLE table_name_40 (start VARCHAR, category VARCHAR, year VARCHAR) ### ANSWER SELECT start FROM table_name_40 WHERE category = "2" AND year = 1947
{ "answer": "SELECT start FROM table_name_40 WHERE category = \"2\" AND year = 1947", "context": "CREATE TABLE table_name_40 (start VARCHAR, category VARCHAR, year VARCHAR)", "question": "Name the start of an event in Catagory 2 of the year 1947." }
### QUESTION What rank was Core Districts + Inner Suburbs and had a population of 10123000? ### CONTEXT CREATE TABLE table_name_37 (rank INTEGER, definition VARCHAR, population VARCHAR) ### ANSWER SELECT MAX(rank) FROM table_name_37 WHERE definition = "core districts + inner suburbs" AND population = "10123000"
{ "answer": "SELECT MAX(rank) FROM table_name_37 WHERE definition = \"core districts + inner suburbs\" AND population = \"10123000\"", "context": "CREATE TABLE table_name_37 (rank INTEGER, definition VARCHAR, population VARCHAR)", "question": "What rank was Core Districts + Inner Suburbs and had a population of 10123000?" }
### QUESTION Which career win-loss record has a 1r in 2002, a 2r in 2000 and a 2r in 2001? ### CONTEXT CREATE TABLE table_name_75 (career_win_loss VARCHAR) ### ANSWER SELECT career_win_loss FROM table_name_75 WHERE 2002 = "1r" AND 2000 = "2r" AND 2001 = "2r"
{ "answer": "SELECT career_win_loss FROM table_name_75 WHERE 2002 = \"1r\" AND 2000 = \"2r\" AND 2001 = \"2r\"", "context": "CREATE TABLE table_name_75 (career_win_loss VARCHAR)", "question": "Which career win-loss record has a 1r in 2002, a 2r in 2000 and a 2r in 2001?" }
### QUESTION what is the weeks on chart for the single from france? ### CONTEXT CREATE TABLE table_name_92 (weeks_on_chart VARCHAR, country VARCHAR) ### ANSWER SELECT weeks_on_chart FROM table_name_92 WHERE country = "france"
{ "answer": "SELECT weeks_on_chart FROM table_name_92 WHERE country = \"france\"", "context": "CREATE TABLE table_name_92 (weeks_on_chart VARCHAR, country VARCHAR)", "question": "what is the weeks on chart for the single from france?" }
### QUESTION What is the lowest Wins, when Losses is less than 10, when Goal Difference is less than 46, when Goals is less than 63, and when Played is less than 30? ### CONTEXT CREATE TABLE table_name_50 (wins INTEGER, played VARCHAR, goals_for VARCHAR, losses VARCHAR, goal_difference VARCHAR) ### ANSWER SELECT MIN(wins) FROM table_name_50 WHERE losses < 10 AND goal_difference < 46 AND goals_for < 63 AND played < 30
{ "answer": "SELECT MIN(wins) FROM table_name_50 WHERE losses < 10 AND goal_difference < 46 AND goals_for < 63 AND played < 30", "context": "CREATE TABLE table_name_50 (wins INTEGER, played VARCHAR, goals_for VARCHAR, losses VARCHAR, goal_difference VARCHAR)", "question": "What is the lowest Wins, when Losses is less than 10, when Goal Difference is less than 46, when Goals is less than 63, and when Played is less than 30?" }
### QUESTION what is the most weeks on chart when the peak position is less than 5 and from Sweden? ### CONTEXT CREATE TABLE table_name_49 (weeks_on_chart INTEGER, peak_position VARCHAR, country VARCHAR) ### ANSWER SELECT MAX(weeks_on_chart) FROM table_name_49 WHERE peak_position < 5 AND country = "sweden"
{ "answer": "SELECT MAX(weeks_on_chart) FROM table_name_49 WHERE peak_position < 5 AND country = \"sweden\"", "context": "CREATE TABLE table_name_49 (weeks_on_chart INTEGER, peak_position VARCHAR, country VARCHAR)", "question": "what is the most weeks on chart when the peak position is less than 5 and from Sweden?" }
### QUESTION The Eastern Creek Raceway circuit is on what date? ### CONTEXT CREATE TABLE table_name_56 (date VARCHAR, circuit VARCHAR) ### ANSWER SELECT date FROM table_name_56 WHERE circuit = "eastern creek raceway"
{ "answer": "SELECT date FROM table_name_56 WHERE circuit = \"eastern creek raceway\"", "context": "CREATE TABLE table_name_56 (date VARCHAR, circuit VARCHAR)", "question": "The Eastern Creek Raceway circuit is on what date?" }
### QUESTION What event was Rob Vine riding? ### CONTEXT CREATE TABLE table_name_56 (event VARCHAR, rider VARCHAR) ### ANSWER SELECT event FROM table_name_56 WHERE rider = "rob vine"
{ "answer": "SELECT event FROM table_name_56 WHERE rider = \"rob vine\"", "context": "CREATE TABLE table_name_56 (event VARCHAR, rider VARCHAR)", "question": "What event was Rob Vine riding?" }
### QUESTION How long is the XXX track used by the Minnesota Vikings? ### CONTEXT CREATE TABLE table_name_14 (time VARCHAR, team_s_ VARCHAR, artist_s_ VARCHAR) ### ANSWER SELECT time FROM table_name_14 WHERE team_s_ = "minnesota vikings" AND artist_s_ = "xxx"
{ "answer": "SELECT time FROM table_name_14 WHERE team_s_ = \"minnesota vikings\" AND artist_s_ = \"xxx\"", "context": "CREATE TABLE table_name_14 (time VARCHAR, team_s_ VARCHAR, artist_s_ VARCHAR)", "question": "How long is the XXX track used by the Minnesota Vikings?" }
### QUESTION What is Record, when Method is "Technical Submission (Rear Naked Choke)"? ### CONTEXT CREATE TABLE table_name_4 (record VARCHAR, method VARCHAR) ### ANSWER SELECT record FROM table_name_4 WHERE method = "technical submission (rear naked choke)"
{ "answer": "SELECT record FROM table_name_4 WHERE method = \"technical submission (rear naked choke)\"", "context": "CREATE TABLE table_name_4 (record VARCHAR, method VARCHAR)", "question": "What is Record, when Method is \"Technical Submission (Rear Naked Choke)\"?" }
### QUESTION Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position? ### CONTEXT CREATE TABLE table_name_48 (position VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR) ### ANSWER SELECT position FROM table_name_48 WHERE round > 6 AND pick__number < 25 AND college = "southern illinois"
{ "answer": "SELECT position FROM table_name_48 WHERE round > 6 AND pick__number < 25 AND college = \"southern illinois\"", "context": "CREATE TABLE table_name_48 (position VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)", "question": "Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position?" }
### QUESTION What year did a short course have a time of 7:51.80? ### CONTEXT CREATE TABLE table_name_24 (year_set VARCHAR, long_course_short_course VARCHAR, time VARCHAR) ### ANSWER SELECT COUNT(year_set) FROM table_name_24 WHERE long_course_short_course = "short course" AND time = "7:51.80"
{ "answer": "SELECT COUNT(year_set) FROM table_name_24 WHERE long_course_short_course = \"short course\" AND time = \"7:51.80\"", "context": "CREATE TABLE table_name_24 (year_set VARCHAR, long_course_short_course VARCHAR, time VARCHAR)", "question": "What year did a short course have a time of 7:51.80?" }
### QUESTION Which NHL team has a Player of steve durbano? ### CONTEXT CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR) ### ANSWER SELECT nhl_team FROM table_name_97 WHERE player = "steve durbano"
{ "answer": "SELECT nhl_team FROM table_name_97 WHERE player = \"steve durbano\"", "context": "CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR)", "question": "Which NHL team has a Player of steve durbano?" }
### QUESTION What is the largest money for a t4 place, for Tiger Woods? ### CONTEXT CREATE TABLE table_name_64 (money___ INTEGER, place VARCHAR, player VARCHAR) ### ANSWER SELECT MAX(money___) AS $__ FROM table_name_64 WHERE place = "t4" AND player = "tiger woods"
{ "answer": "SELECT MAX(money___) AS $__ FROM table_name_64 WHERE place = \"t4\" AND player = \"tiger woods\"", "context": "CREATE TABLE table_name_64 (money___ INTEGER, place VARCHAR, player VARCHAR)", "question": "What is the largest money for a t4 place, for Tiger Woods?" }
### QUESTION Name the League which has a Regular Season of 3rd, atlantic? ### CONTEXT CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR) ### ANSWER SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic"
{ "answer": "SELECT league FROM table_name_86 WHERE regular_season = \"3rd, atlantic\"", "context": "CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)", "question": "Name the League which has a Regular Season of 3rd, atlantic?" }
### QUESTION For events with under 3 times played and fewer than 1 cut made, what is the total number of top-10 finishes? ### CONTEXT CREATE TABLE table_name_24 (top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR) ### ANSWER SELECT COUNT(top_10) FROM table_name_24 WHERE events < 3 AND cuts_made < 1
{ "answer": "SELECT COUNT(top_10) FROM table_name_24 WHERE events < 3 AND cuts_made < 1", "context": "CREATE TABLE table_name_24 (top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)", "question": "For events with under 3 times played and fewer than 1 cut made, what is the total number of top-10 finishes?" }
### QUESTION What is the location of the game that has a number smaller than 2? ### CONTEXT CREATE TABLE table_name_68 (location VARCHAR, game INTEGER) ### ANSWER SELECT location FROM table_name_68 WHERE game < 2
{ "answer": "SELECT location FROM table_name_68 WHERE game < 2", "context": "CREATE TABLE table_name_68 (location VARCHAR, game INTEGER)", "question": "What is the location of the game that has a number smaller than 2?" }
### QUESTION What film did ian mackinnon direct that was in the short film 2007 prix uip category? ### CONTEXT CREATE TABLE table_name_55 (film VARCHAR, category VARCHAR, director_s_ VARCHAR) ### ANSWER SELECT film FROM table_name_55 WHERE category = "short film 2007 prix uip" AND director_s_ = "ian mackinnon"
{ "answer": "SELECT film FROM table_name_55 WHERE category = \"short film 2007 prix uip\" AND director_s_ = \"ian mackinnon\"", "context": "CREATE TABLE table_name_55 (film VARCHAR, category VARCHAR, director_s_ VARCHAR)", "question": "What film did ian mackinnon direct that was in the short film 2007 prix uip category?" }
### QUESTION What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32? ### CONTEXT CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR) ### ANSWER SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32
{ "answer": "SELECT COUNT(weight) FROM table_name_90 WHERE position = \"forward/center\" AND player = \"othella harrington\" AND number < 32", "context": "CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR)", "question": "What is the total number of Weight, when Position is \"Forward/Center\", when Player is \"Othella Harrington\", and when Number is less than 32?" }
### QUESTION Name the D 45 O with D 44 O majority → ### CONTEXT CREATE TABLE table_name_5 (d_45_o VARCHAR, d_44_o VARCHAR) ### ANSWER SELECT d_45_o FROM table_name_5 WHERE d_44_o = "majority →"
{ "answer": "SELECT d_45_o FROM table_name_5 WHERE d_44_o = \"majority →\"", "context": "CREATE TABLE table_name_5 (d_45_o VARCHAR, d_44_o VARCHAR)", "question": "Name the D 45 O with D 44 O majority →" }
### QUESTION In what year was the number of attempts 888? ### CONTEXT CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR) ### ANSWER SELECT year FROM table_name_96 WHERE attempts = "888"
{ "answer": "SELECT year FROM table_name_96 WHERE attempts = \"888\"", "context": "CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR)", "question": "In what year was the number of attempts 888?" }
### QUESTION WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? ### CONTEXT CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR) ### ANSWER SELECT to_par FROM table_name_94 WHERE place = "t3" AND player = "geoff ogilvy"
{ "answer": "SELECT to_par FROM table_name_94 WHERE place = \"t3\" AND player = \"geoff ogilvy\"", "context": "CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR)", "question": "WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3?" }
### QUESTION What was the categorie in 2002 at the Berlin international Film Festival that Danielle Darrieux was in? ### CONTEXT CREATE TABLE table_name_39 (categorie VARCHAR, year VARCHAR, awards VARCHAR) ### ANSWER SELECT categorie FROM table_name_39 WHERE year = 2002 AND awards = "berlin international film festival"
{ "answer": "SELECT categorie FROM table_name_39 WHERE year = 2002 AND awards = \"berlin international film festival\"", "context": "CREATE TABLE table_name_39 (categorie VARCHAR, year VARCHAR, awards VARCHAR)", "question": "What was the categorie in 2002 at the Berlin international Film Festival that Danielle Darrieux was in?" }
### QUESTION What was the date for the Sepang International circuit, round 3? ### CONTEXT CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR) ### ANSWER SELECT date FROM table_name_40 WHERE circuit = "sepang international circuit" AND round = "3"
{ "answer": "SELECT date FROM table_name_40 WHERE circuit = \"sepang international circuit\" AND round = \"3\"", "context": "CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR)", "question": "What was the date for the Sepang International circuit, round 3?" }
### QUESTION Which round had a winning driver of Uwe Alzen, at the Sepang International circuit? ### CONTEXT CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR) ### ANSWER SELECT round FROM table_name_80 WHERE winning_driver = "uwe alzen" AND circuit = "sepang international circuit"
{ "answer": "SELECT round FROM table_name_80 WHERE winning_driver = \"uwe alzen\" AND circuit = \"sepang international circuit\"", "context": "CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR)", "question": "Which round had a winning driver of Uwe Alzen, at the Sepang International circuit?" }
### QUESTION Who was the winning constructor at the circuit of parioli? ### CONTEXT CREATE TABLE table_name_71 (winning_constructor VARCHAR, circuit VARCHAR) ### ANSWER SELECT winning_constructor FROM table_name_71 WHERE circuit = "parioli"
{ "answer": "SELECT winning_constructor FROM table_name_71 WHERE circuit = \"parioli\"", "context": "CREATE TABLE table_name_71 (winning_constructor VARCHAR, circuit VARCHAR)", "question": "Who was the winning constructor at the circuit of parioli?" }
### QUESTION What is the highest Grid with a time of +1:19.905, and less than 20 laps? ### CONTEXT CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR) ### ANSWER SELECT MAX(grid) FROM table_name_22 WHERE time = "+1:19.905" AND laps < 20
{ "answer": "SELECT MAX(grid) FROM table_name_22 WHERE time = \"+1:19.905\" AND laps < 20", "context": "CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR)", "question": "What is the highest Grid with a time of +1:19.905, and less than 20 laps?" }
### QUESTION What was the lowest lab for Gilera with a grid less than 12? ### CONTEXT CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) ### ANSWER SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = "gilera" AND grid < 12
{ "answer": "SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = \"gilera\" AND grid < 12", "context": "CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)", "question": "What was the lowest lab for Gilera with a grid less than 12?" }
### QUESTION What is the average Margin that has a Round of 13. (h)? ### CONTEXT CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR) ### ANSWER SELECT AVG(margin) FROM table_name_3 WHERE round = "13. (h)"
{ "answer": "SELECT AVG(margin) FROM table_name_3 WHERE round = \"13. (h)\"", "context": "CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR)", "question": "What is the average Margin that has a Round of 13. (h)?" }
### QUESTION Who is the coach of the team from Port Pirie? ### CONTEXT CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR) ### ANSWER SELECT coach FROM table_name_6 WHERE location = "port pirie"
{ "answer": "SELECT coach FROM table_name_6 WHERE location = \"port pirie\"", "context": "CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR)", "question": "Who is the coach of the team from Port Pirie?" }
### QUESTION Which location has a date of may 21? ### CONTEXT CREATE TABLE table_name_95 (location VARCHAR, date VARCHAR) ### ANSWER SELECT location FROM table_name_95 WHERE date = "may 21"
{ "answer": "SELECT location FROM table_name_95 WHERE date = \"may 21\"", "context": "CREATE TABLE table_name_95 (location VARCHAR, date VARCHAR)", "question": "Which location has a date of may 21?" }
### QUESTION What is the total Decile that has a state authority, fairlie area and roll smarter than 206? ### CONTEXT CREATE TABLE table_name_49 (decile VARCHAR, roll VARCHAR, authority VARCHAR, area VARCHAR) ### ANSWER SELECT COUNT(decile) FROM table_name_49 WHERE authority = "state" AND area = "fairlie" AND roll < 206
{ "answer": "SELECT COUNT(decile) FROM table_name_49 WHERE authority = \"state\" AND area = \"fairlie\" AND roll < 206", "context": "CREATE TABLE table_name_49 (decile VARCHAR, roll VARCHAR, authority VARCHAR, area VARCHAR)", "question": "What is the total Decile that has a state authority, fairlie area and roll smarter than 206?" }
### QUESTION What is the college/junior/club team (league) of lw position player mark miller, from a round greater than 4? ### CONTEXT CREATE TABLE table_name_7 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR) ### ANSWER SELECT college_junior_club_team__league_ FROM table_name_7 WHERE round > 4 AND position = "lw" AND player = "mark miller"
{ "answer": "SELECT college_junior_club_team__league_ FROM table_name_7 WHERE round > 4 AND position = \"lw\" AND player = \"mark miller\"", "context": "CREATE TABLE table_name_7 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR)", "question": "What is the college/junior/club team (league) of lw position player mark miller, from a round greater than 4?" }
### QUESTION Who won the FIS Nordic World Ski Championships in 1972? ### CONTEXT CREATE TABLE table_name_4 (winner VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### ANSWER SELECT winner FROM table_name_4 WHERE fis_nordic_world_ski_championships = "1972"
{ "answer": "SELECT winner FROM table_name_4 WHERE fis_nordic_world_ski_championships = \"1972\"", "context": "CREATE TABLE table_name_4 (winner VARCHAR, fis_nordic_world_ski_championships VARCHAR)", "question": "Who won the FIS Nordic World Ski Championships in 1972?" }
### QUESTION For a country of Spain, place of t6, what is the Money ($)? ### CONTEXT CREATE TABLE table_name_44 (money___$__ VARCHAR, place VARCHAR, country VARCHAR) ### ANSWER SELECT money___$__ FROM table_name_44 WHERE place = "t6" AND country = "spain"
{ "answer": "SELECT money___$__ FROM table_name_44 WHERE place = \"t6\" AND country = \"spain\"", "context": "CREATE TABLE table_name_44 (money___$__ VARCHAR, place VARCHAR, country VARCHAR)", "question": "For a country of Spain, place of t6, what is the Money ($)?" }
### QUESTION Which Senator has a Party of republican, a Home Town of houston, and a District of 7? ### CONTEXT CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR) ### ANSWER SELECT senator FROM table_name_82 WHERE party = "republican" AND home_town = "houston" AND district = 7
{ "answer": "SELECT senator FROM table_name_82 WHERE party = \"republican\" AND home_town = \"houston\" AND district = 7", "context": "CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)", "question": "Which Senator has a Party of republican, a Home Town of houston, and a District of 7?" }
### QUESTION Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18? ### CONTEXT CREATE TABLE table_name_81 (took_office VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR) ### ANSWER SELECT COUNT(took_office) FROM table_name_81 WHERE party = "democratic" AND home_town = "victoria" AND district < 18
{ "answer": "SELECT COUNT(took_office) FROM table_name_81 WHERE party = \"democratic\" AND home_town = \"victoria\" AND district < 18", "context": "CREATE TABLE table_name_81 (took_office VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)", "question": "Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18?" }
### QUESTION What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18? ### CONTEXT CREATE TABLE table_name_39 (laps INTEGER, time VARCHAR, grid VARCHAR) ### ANSWER SELECT MIN(laps) FROM table_name_39 WHERE time = "+24.440" AND grid > 18
{ "answer": "SELECT MIN(laps) FROM table_name_39 WHERE time = \"+24.440\" AND grid > 18", "context": "CREATE TABLE table_name_39 (laps INTEGER, time VARCHAR, grid VARCHAR)", "question": "What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?" }
### QUESTION Which country earned place T3 with a score of 70-68=138? ### CONTEXT CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT country FROM table_name_18 WHERE place = "t3" AND score = 70 - 68 = 138
{ "answer": "SELECT country FROM table_name_18 WHERE place = \"t3\" AND score = 70 - 68 = 138", "context": "CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR)", "question": "Which country earned place T3 with a score of 70-68=138?" }
### QUESTION Name the sum of year for engine of brm p202 3.0 v12 brm p200 3.0 v12 ### CONTEXT CREATE TABLE table_name_43 (year INTEGER, engine_s_ VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_43 WHERE engine_s_ = "brm p202 3.0 v12 brm p200 3.0 v12"
{ "answer": "SELECT SUM(year) FROM table_name_43 WHERE engine_s_ = \"brm p202 3.0 v12 brm p200 3.0 v12\"", "context": "CREATE TABLE table_name_43 (year INTEGER, engine_s_ VARCHAR)", "question": "Name the sum of year for engine of brm p202 3.0 v12 brm p200 3.0 v12" }
### QUESTION What was the endowment in 2008 of the college that was established in 1961? ### CONTEXT CREATE TABLE table_name_55 (endowment_as_of_2008 VARCHAR, established VARCHAR) ### ANSWER SELECT endowment_as_of_2008 FROM table_name_55 WHERE established = 1961
{ "answer": "SELECT endowment_as_of_2008 FROM table_name_55 WHERE established = 1961", "context": "CREATE TABLE table_name_55 (endowment_as_of_2008 VARCHAR, established VARCHAR)", "question": "What was the endowment in 2008 of the college that was established in 1961?" }
### QUESTION What is the average money requested in the episode first aired on 18 January 2005 by the company/product name IV Cam ### CONTEXT CREATE TABLE table_name_96 (money_requested__ INTEGER, first_aired VARCHAR, company_or_product_name VARCHAR) ### ANSWER SELECT AVG(money_requested__) AS £_ FROM table_name_96 WHERE first_aired = "18 january 2005" AND company_or_product_name = "iv cam"
{ "answer": "SELECT AVG(money_requested__) AS £_ FROM table_name_96 WHERE first_aired = \"18 january 2005\" AND company_or_product_name = \"iv cam\"", "context": "CREATE TABLE table_name_96 (money_requested__ INTEGER, first_aired VARCHAR, company_or_product_name VARCHAR)", "question": "What is the average money requested in the episode first aired on 18 January 2005 by the company/product name IV Cam" }
### QUESTION WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES? ### CONTEXT CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR) ### ANSWER SELECT sixth FROM table_name_66 WHERE second = "white lies"
{ "answer": "SELECT sixth FROM table_name_66 WHERE second = \"white lies\"", "context": "CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR)", "question": "WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES?" }
### QUESTION What is the loaction attendance that has a game greater than 35, with January 30 as the date? ### CONTEXT CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = "january 30"
{ "answer": "SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = \"january 30\"", "context": "CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)", "question": "What is the loaction attendance that has a game greater than 35, with January 30 as the date?" }
### QUESTION What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103? ### CONTEXT CREATE TABLE table_name_50 (retired INTEGER, poaf_serial VARCHAR, delivery VARCHAR, in_service VARCHAR) ### ANSWER SELECT MIN(retired) FROM table_name_50 WHERE delivery = "1965" AND in_service = "november 1971" AND poaf_serial < 7103
{ "answer": "SELECT MIN(retired) FROM table_name_50 WHERE delivery = \"1965\" AND in_service = \"november 1971\" AND poaf_serial < 7103", "context": "CREATE TABLE table_name_50 (retired INTEGER, poaf_serial VARCHAR, delivery VARCHAR, in_service VARCHAR)", "question": "What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?" }
### QUESTION What is the smallest amount of freight carried on the road that closed on March 31 and reached super B capacity on February 17 after 2011? ### CONTEXT CREATE TABLE table_name_80 (freight_carried_s_tonne INTEGER, year VARCHAR, road_closed VARCHAR, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR) ### ANSWER SELECT MIN(freight_carried_s_tonne) FROM table_name_80 WHERE road_closed = "march 31" AND super_b_capacity_reached_[_citation_needed_] = "february 17" AND year > 2011
{ "answer": "SELECT MIN(freight_carried_s_tonne) FROM table_name_80 WHERE road_closed = \"march 31\" AND super_b_capacity_reached_[_citation_needed_] = \"february 17\" AND year > 2011", "context": "CREATE TABLE table_name_80 (freight_carried_s_tonne INTEGER, year VARCHAR, road_closed VARCHAR, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR)", "question": "What is the smallest amount of freight carried on the road that closed on March 31 and reached super B capacity on February 17 after 2011?" }
### QUESTION What's the Termination of Mission listed that has a Presentation of Credentials for August 29, 1859? ### CONTEXT CREATE TABLE table_name_34 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT termination_of_mission FROM table_name_34 WHERE presentation_of_credentials = "august 29, 1859"
{ "answer": "SELECT termination_of_mission FROM table_name_34 WHERE presentation_of_credentials = \"august 29, 1859\"", "context": "CREATE TABLE table_name_34 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)", "question": "What's the Termination of Mission listed that has a Presentation of Credentials for August 29, 1859?" }
### QUESTION What Representative has a Presentation of Credentails of April 10, 1855? ### CONTEXT CREATE TABLE table_name_42 (representative VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT representative FROM table_name_42 WHERE presentation_of_credentials = "april 10, 1855"
{ "answer": "SELECT representative FROM table_name_42 WHERE presentation_of_credentials = \"april 10, 1855\"", "context": "CREATE TABLE table_name_42 (representative VARCHAR, presentation_of_credentials VARCHAR)", "question": "What Representative has a Presentation of Credentails of April 10, 1855?" }
### QUESTION Which opponent played in the Chinese Taipei Open in 2000? ### CONTEXT CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR) ### ANSWER SELECT opponent FROM table_name_66 WHERE tournament = "chinese taipei open" AND year = 2000
{ "answer": "SELECT opponent FROM table_name_66 WHERE tournament = \"chinese taipei open\" AND year = 2000", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR)", "question": "Which opponent played in the Chinese Taipei Open in 2000?" }
### QUESTION Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number? ### CONTEXT CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_number_s_ VARCHAR) ### ANSWER SELECT nir_number FROM table_name_87 WHERE type = "tso (ex-br class 488 unit 488305)" AND br_number_s_ = "6082 / 72605"
{ "answer": "SELECT nir_number FROM table_name_87 WHERE type = \"tso (ex-br class 488 unit 488305)\" AND br_number_s_ = \"6082 / 72605\"", "context": "CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_number_s_ VARCHAR)", "question": "Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number?" }
### QUESTION Where is the location of the friendly match larger than 1 where the Super Reds were the opponent? ### CONTEXT CREATE TABLE table_name_87 (location VARCHAR, opponent_team VARCHAR, match VARCHAR, tournament VARCHAR) ### ANSWER SELECT location FROM table_name_87 WHERE match > 1 AND tournament = "friendly" AND opponent_team = "super reds"
{ "answer": "SELECT location FROM table_name_87 WHERE match > 1 AND tournament = \"friendly\" AND opponent_team = \"super reds\"", "context": "CREATE TABLE table_name_87 (location VARCHAR, opponent_team VARCHAR, match VARCHAR, tournament VARCHAR)", "question": "Where is the location of the friendly match larger than 1 where the Super Reds were the opponent?" }
### QUESTION Which player scored 71? ### CONTEXT CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_4 WHERE score = 71
{ "answer": "SELECT player FROM table_name_4 WHERE score = 71", "context": "CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)", "question": "Which player scored 71?" }
### QUESTION What's the acting segment of 林佩琪 lin peiqi's events that are eliminated? ### CONTEXT CREATE TABLE table_name_36 (acting_segment VARCHAR, status VARCHAR, name VARCHAR) ### ANSWER SELECT acting_segment FROM table_name_36 WHERE status = "eliminated" AND name = "林佩琪 lin peiqi"
{ "answer": "SELECT acting_segment FROM table_name_36 WHERE status = \"eliminated\" AND name = \"林佩琪 lin peiqi\"", "context": "CREATE TABLE table_name_36 (acting_segment VARCHAR, status VARCHAR, name VARCHAR)", "question": "What's the acting segment of 林佩琪 lin peiqi's events that are eliminated?" }
### QUESTION What day was the game held at Firhill against AYR United? ### CONTEXT CREATE TABLE table_name_60 (date VARCHAR, venue VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_60 WHERE venue = "firhill" AND opponent = "ayr united"
{ "answer": "SELECT date FROM table_name_60 WHERE venue = \"firhill\" AND opponent = \"ayr united\"", "context": "CREATE TABLE table_name_60 (date VARCHAR, venue VARCHAR, opponent VARCHAR)", "question": "What day was the game held at Firhill against AYR United?" }
### QUESTION What Aspect has a Programming of Saigon Network Television? ### CONTEXT CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR) ### ANSWER SELECT aspect FROM table_name_12 WHERE programming = "saigon network television"
{ "answer": "SELECT aspect FROM table_name_12 WHERE programming = \"saigon network television\"", "context": "CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR)", "question": "What Aspect has a Programming of Saigon Network Television?" }
### QUESTION Name the least hits for year less than 1920 and player of ed delahanty ### CONTEXT CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR) ### ANSWER SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = "ed delahanty"
{ "answer": "SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = \"ed delahanty\"", "context": "CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR)", "question": "Name the least hits for year less than 1920 and player of ed delahanty" }
### QUESTION For the game that was played on october 22 in west side grounds, what is the total attendance ### CONTEXT CREATE TABLE table_name_41 (attendance VARCHAR, location VARCHAR, date VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_41 WHERE location = "west side grounds" AND date = "october 22"
{ "answer": "SELECT COUNT(attendance) FROM table_name_41 WHERE location = \"west side grounds\" AND date = \"october 22\"", "context": "CREATE TABLE table_name_41 (attendance VARCHAR, location VARCHAR, date VARCHAR)", "question": "For the game that was played on october 22 in west side grounds, what is the total attendance" }
### QUESTION What year did maggs magnificent mild bear win overall at the camra reading branch beer festival? ### CONTEXT CREATE TABLE table_name_62 (year INTEGER, category VARCHAR, beer_name VARCHAR, competition VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_62 WHERE beer_name = "maggs magnificent mild" AND competition = "camra reading branch beer festival" AND category = "overall"
{ "answer": "SELECT MAX(year) FROM table_name_62 WHERE beer_name = \"maggs magnificent mild\" AND competition = \"camra reading branch beer festival\" AND category = \"overall\"", "context": "CREATE TABLE table_name_62 (year INTEGER, category VARCHAR, beer_name VARCHAR, competition VARCHAR)", "question": "What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?" }
### QUESTION Which week was the first game played that had a time of 2:06 and less than 27,374 attendees? ### CONTEXT CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_47 WHERE time = "2:06" AND attendance < 27 OFFSET 374
{ "answer": "SELECT MIN(game) FROM table_name_47 WHERE time = \"2:06\" AND attendance < 27 OFFSET 374", "context": "CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR)", "question": "Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?" }
### QUESTION What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition? ### CONTEXT CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, category VARCHAR, beer_name VARCHAR, prize VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_93 WHERE beer_name = "maggs magnificent mild" AND prize = "gold medal" AND category = "mild and porter" AND competition = "siba south east region beer competition"
{ "answer": "SELECT AVG(year) FROM table_name_93 WHERE beer_name = \"maggs magnificent mild\" AND prize = \"gold medal\" AND category = \"mild and porter\" AND competition = \"siba south east region beer competition\"", "context": "CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, category VARCHAR, beer_name VARCHAR, prize VARCHAR)", "question": "What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?" }
### QUESTION What beer won a silver medal at the camra reading branch beer festival in 2008? ### CONTEXT CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR) ### ANSWER SELECT beer_name FROM table_name_33 WHERE prize = "silver medal" AND competition = "camra reading branch beer festival" AND year = 2008
{ "answer": "SELECT beer_name FROM table_name_33 WHERE prize = \"silver medal\" AND competition = \"camra reading branch beer festival\" AND year = 2008", "context": "CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR)", "question": "What beer won a silver medal at the camra reading branch beer festival in 2008?" }
### QUESTION What is Model Number, when Part Number(s) is AY80609003987AB? ### CONTEXT CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR) ### ANSWER SELECT model_number FROM table_name_70 WHERE part_number_s_ = "ay80609003987ab"
{ "answer": "SELECT model_number FROM table_name_70 WHERE part_number_s_ = \"ay80609003987ab\"", "context": "CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR)", "question": "What is Model Number, when Part Number(s) is AY80609003987AB?" }
### QUESTION Which Kit Manufacturer supports team Everton? ### CONTEXT CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR) ### ANSWER SELECT kit_manufacturer FROM table_name_90 WHERE team = "everton"
{ "answer": "SELECT kit_manufacturer FROM table_name_90 WHERE team = \"everton\"", "context": "CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR)", "question": "Which Kit Manufacturer supports team Everton?" }
### QUESTION Which event has a distance of ft10in (m)? ### CONTEXT CREATE TABLE table_name_88 (event VARCHAR, distance VARCHAR) ### ANSWER SELECT event FROM table_name_88 WHERE distance = "ft10in (m)"
{ "answer": "SELECT event FROM table_name_88 WHERE distance = \"ft10in (m)\"", "context": "CREATE TABLE table_name_88 (event VARCHAR, distance VARCHAR)", "question": "Which event has a distance of ft10in (m)?" }
### QUESTION Who did they play when there were only 751 in attendance? ### CONTEXT CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER) ### ANSWER SELECT opponent FROM table_name_78 WHERE attendance < 751
{ "answer": "SELECT opponent FROM table_name_78 WHERE attendance < 751", "context": "CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER)", "question": "Who did they play when there were only 751 in attendance?" }
### QUESTION What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649? ### CONTEXT CREATE TABLE table_name_31 (vehicle_flight__number VARCHAR, pilot VARCHAR, velocity__km_h_ VARCHAR) ### ANSWER SELECT vehicle_flight__number FROM table_name_31 WHERE pilot = "peterson" AND velocity__km_h_ = 649
{ "answer": "SELECT vehicle_flight__number FROM table_name_31 WHERE pilot = \"peterson\" AND velocity__km_h_ = 649", "context": "CREATE TABLE table_name_31 (vehicle_flight__number VARCHAR, pilot VARCHAR, velocity__km_h_ VARCHAR)", "question": "What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649?" }
### QUESTION Which Barrel twist has a Stock of canadian 3rd generation and a Hand guards of short ribbed? ### CONTEXT CREATE TABLE table_name_33 (barrel_twist VARCHAR, stock VARCHAR, hand_guards VARCHAR) ### ANSWER SELECT barrel_twist FROM table_name_33 WHERE stock = "canadian 3rd generation" AND hand_guards = "short ribbed"
{ "answer": "SELECT barrel_twist FROM table_name_33 WHERE stock = \"canadian 3rd generation\" AND hand_guards = \"short ribbed\"", "context": "CREATE TABLE table_name_33 (barrel_twist VARCHAR, stock VARCHAR, hand_guards VARCHAR)", "question": "Which Barrel twist has a Stock of canadian 3rd generation and a Hand guards of short ribbed?" }
### QUESTION What was the title used for Rosie, the film nominated for the dutch language? ### CONTEXT CREATE TABLE table_name_79 (film_title_used_in_nomination VARCHAR, language_s_ VARCHAR, original_title VARCHAR) ### ANSWER SELECT film_title_used_in_nomination FROM table_name_79 WHERE language_s_ = "dutch" AND original_title = "rosie"
{ "answer": "SELECT film_title_used_in_nomination FROM table_name_79 WHERE language_s_ = \"dutch\" AND original_title = \"rosie\"", "context": "CREATE TABLE table_name_79 (film_title_used_in_nomination VARCHAR, language_s_ VARCHAR, original_title VARCHAR)", "question": "What was the title used for Rosie, the film nominated for the dutch language?" }
### QUESTION What is the lifespan of Joseph Vance, a democratic-republican from Ohio? ### CONTEXT CREATE TABLE table_name_96 (lifespan VARCHAR, party VARCHAR, state VARCHAR, representative VARCHAR) ### ANSWER SELECT lifespan FROM table_name_96 WHERE state = "ohio" AND representative = "joseph vance" AND party = "democratic-republican"
{ "answer": "SELECT lifespan FROM table_name_96 WHERE state = \"ohio\" AND representative = \"joseph vance\" AND party = \"democratic-republican\"", "context": "CREATE TABLE table_name_96 (lifespan VARCHAR, party VARCHAR, state VARCHAR, representative VARCHAR)", "question": "What is the lifespan of Joseph Vance, a democratic-republican from Ohio?" }
### QUESTION Name the Silver that has a Total smaller than 2, and a Nation of south korea? ### CONTEXT CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR) ### ANSWER SELECT AVG(silver) FROM table_name_49 WHERE total < 2 AND nation = "south korea"
{ "answer": "SELECT AVG(silver) FROM table_name_49 WHERE total < 2 AND nation = \"south korea\"", "context": "CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR)", "question": "Name the Silver that has a Total smaller than 2, and a Nation of south korea?" }
### QUESTION What is the location of the match with chad armstrong as the opponent? ### CONTEXT CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR) ### ANSWER SELECT location FROM table_name_47 WHERE opponent = "chad armstrong"
{ "answer": "SELECT location FROM table_name_47 WHERE opponent = \"chad armstrong\"", "context": "CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR)", "question": "What is the location of the match with chad armstrong as the opponent?" }
### QUESTION What place is United States player Corey Pavin in? ### CONTEXT CREATE TABLE table_name_25 (place VARCHAR, country VARCHAR, player VARCHAR) ### ANSWER SELECT place FROM table_name_25 WHERE country = "united states" AND player = "corey pavin"
{ "answer": "SELECT place FROM table_name_25 WHERE country = \"united states\" AND player = \"corey pavin\"", "context": "CREATE TABLE table_name_25 (place VARCHAR, country VARCHAR, player VARCHAR)", "question": "What place is United States player Corey Pavin in?" }
### QUESTION Name the place for score of 67-70=137 and stuart appleby ### CONTEXT CREATE TABLE table_name_55 (place VARCHAR, player VARCHAR, score VARCHAR) ### ANSWER SELECT place FROM table_name_55 WHERE score = 67 - 70 = 137 AND player = "stuart appleby"
{ "answer": "SELECT place FROM table_name_55 WHERE score = 67 - 70 = 137 AND player = \"stuart appleby\"", "context": "CREATE TABLE table_name_55 (place VARCHAR, player VARCHAR, score VARCHAR)", "question": "Name the place for score of 67-70=137 and stuart appleby" }
### QUESTION Which city has the IATA SSG? ### CONTEXT CREATE TABLE table_name_40 (city VARCHAR, iata VARCHAR) ### ANSWER SELECT city FROM table_name_40 WHERE iata = "ssg"
{ "answer": "SELECT city FROM table_name_40 WHERE iata = \"ssg\"", "context": "CREATE TABLE table_name_40 (city VARCHAR, iata VARCHAR)", "question": "Which city has the IATA SSG?" }
### QUESTION What is the IATA of galeão airport? ### CONTEXT CREATE TABLE table_name_58 (iata VARCHAR, airport VARCHAR) ### ANSWER SELECT iata FROM table_name_58 WHERE airport = "galeão airport"
{ "answer": "SELECT iata FROM table_name_58 WHERE airport = \"galeão airport\"", "context": "CREATE TABLE table_name_58 (iata VARCHAR, airport VARCHAR)", "question": "What is the IATA of galeão airport?" }
### QUESTION How many executions in persona have a number with known sentences of 2 (1543–1544)? ### CONTEXT CREATE TABLE table_name_92 (executions_in_persona VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR) ### ANSWER SELECT executions_in_persona FROM table_name_92 WHERE number_of_autos_da_fé_with_known_sentences = "2 (1543–1544)"
{ "answer": "SELECT executions_in_persona FROM table_name_92 WHERE number_of_autos_da_fé_with_known_sentences = \"2 (1543–1544)\"", "context": "CREATE TABLE table_name_92 (executions_in_persona VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR)", "question": "How many executions in persona have a number with known sentences of 2 (1543–1544)?" }
### QUESTION When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven? ### CONTEXT CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, team VARCHAR, driver VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_65 WHERE team = "mi-jack conquest racing" AND driver = "justin wilson" AND grid < 5
{ "answer": "SELECT MAX(laps) FROM table_name_65 WHERE team = \"mi-jack conquest racing\" AND driver = \"justin wilson\" AND grid < 5", "context": "CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, team VARCHAR, driver VARCHAR)", "question": "When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven?" }
### QUESTION When the team is newman/haas racing and the grid size is 3, what's the time/retired? ### CONTEXT CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR) ### ANSWER SELECT time_retired FROM table_name_8 WHERE team = "newman/haas racing" AND grid = 3
{ "answer": "SELECT time_retired FROM table_name_8 WHERE team = \"newman/haas racing\" AND grid = 3", "context": "CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)", "question": "When the team is newman/haas racing and the grid size is 3, what's the time/retired?" }
### QUESTION Who was the Ole Miss player associated with Chuck Dicus? ### CONTEXT CREATE TABLE table_name_65 (ole_miss VARCHAR, arkansas VARCHAR) ### ANSWER SELECT ole_miss FROM table_name_65 WHERE arkansas = "chuck dicus"
{ "answer": "SELECT ole_miss FROM table_name_65 WHERE arkansas = \"chuck dicus\"", "context": "CREATE TABLE table_name_65 (ole_miss VARCHAR, arkansas VARCHAR)", "question": "Who was the Ole Miss player associated with Chuck Dicus?" }
### QUESTION What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1? ### CONTEXT CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR) ### ANSWER SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = "integrated" AND name = "bishop viard college"
{ "answer": "SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = \"integrated\" AND name = \"bishop viard college\"", "context": "CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)", "question": "What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?" }
### QUESTION What was the decile of Samuel Marsden Collegiate School in Whitby, when it had a roll higher than 163? ### CONTEXT CREATE TABLE table_name_55 (decile VARCHAR, roll VARCHAR, area VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(decile) FROM table_name_55 WHERE area = "whitby" AND name = "samuel marsden collegiate school" AND roll > 163
{ "answer": "SELECT COUNT(decile) FROM table_name_55 WHERE area = \"whitby\" AND name = \"samuel marsden collegiate school\" AND roll > 163", "context": "CREATE TABLE table_name_55 (decile VARCHAR, roll VARCHAR, area VARCHAR, name VARCHAR)", "question": "What was the decile of Samuel Marsden Collegiate School in Whitby, when it had a roll higher than 163?" }
### QUESTION What integrated school had a decile of 2 and a roll larger than 55? ### CONTEXT CREATE TABLE table_name_69 (name VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR) ### ANSWER SELECT name FROM table_name_69 WHERE decile = 2 AND authority = "integrated" AND roll > 55
{ "answer": "SELECT name FROM table_name_69 WHERE decile = 2 AND authority = \"integrated\" AND roll > 55", "context": "CREATE TABLE table_name_69 (name VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR)", "question": "What integrated school had a decile of 2 and a roll larger than 55?" }
### QUESTION Original airdate for #6 with 1.246 viewers? ### CONTEXT CREATE TABLE table_name_73 (original_airdate VARCHAR, nightly_rank VARCHAR, viewers__millions_ VARCHAR) ### ANSWER SELECT original_airdate FROM table_name_73 WHERE nightly_rank = "#6" AND viewers__millions_ = 1.246
{ "answer": "SELECT original_airdate FROM table_name_73 WHERE nightly_rank = \"#6\" AND viewers__millions_ = 1.246", "context": "CREATE TABLE table_name_73 (original_airdate VARCHAR, nightly_rank VARCHAR, viewers__millions_ VARCHAR)", "question": "Original airdate for #6 with 1.246 viewers?" }
### QUESTION Rank for viewers larger than 1.244? ### CONTEXT CREATE TABLE table_name_21 (nightly_rank VARCHAR, viewers__millions_ INTEGER) ### ANSWER SELECT nightly_rank FROM table_name_21 WHERE viewers__millions_ > 1.244
{ "answer": "SELECT nightly_rank FROM table_name_21 WHERE viewers__millions_ > 1.244", "context": "CREATE TABLE table_name_21 (nightly_rank VARCHAR, viewers__millions_ INTEGER)", "question": "Rank for viewers larger than 1.244?" }
### QUESTION What is the entrant earlier than 1956 with a Vanwall Special chassis? ### CONTEXT CREATE TABLE table_name_19 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) ### ANSWER SELECT entrant FROM table_name_19 WHERE year < 1956 AND chassis = "vanwall special"
{ "answer": "SELECT entrant FROM table_name_19 WHERE year < 1956 AND chassis = \"vanwall special\"", "context": "CREATE TABLE table_name_19 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)", "question": "What is the entrant earlier than 1956 with a Vanwall Special chassis?" }
### QUESTION How many points for the cooper car company after 1959? ### CONTEXT CREATE TABLE table_name_90 (points INTEGER, entrant VARCHAR, year VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_90 WHERE entrant = "cooper car company" AND year > 1959
{ "answer": "SELECT SUM(points) FROM table_name_90 WHERE entrant = \"cooper car company\" AND year > 1959", "context": "CREATE TABLE table_name_90 (points INTEGER, entrant VARCHAR, year VARCHAR)", "question": "How many points for the cooper car company after 1959?" }
### QUESTION Where was the FC match with a score of 12 played? ### CONTEXT CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR) ### ANSWER SELECT location FROM table_name_45 WHERE fc_matches = "12"
{ "answer": "SELECT location FROM table_name_45 WHERE fc_matches = \"12\"", "context": "CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR)", "question": "Where was the FC match with a score of 12 played?" }
### QUESTION What is the average 5432 value with a 11502 larger than 1163, a 15122 less than 15122, and a 3620 less than 624? ### CONTEXT CREATE TABLE table_name_12 (Id VARCHAR) ### ANSWER SELECT AVG(5432) FROM table_name_12 WHERE 11502 > 1163 AND 15122 < 15122 AND 3620 < 624
{ "answer": "SELECT AVG(5432) FROM table_name_12 WHERE 11502 > 1163 AND 15122 < 15122 AND 3620 < 624", "context": "CREATE TABLE table_name_12 (Id VARCHAR)", "question": "What is the average 5432 value with a 11502 larger than 1163, a 15122 less than 15122, and a 3620 less than 624?" }
### QUESTION What reference is used with the title アイシテル? ### CONTEXT CREATE TABLE table_name_39 (reference VARCHAR, japanese_title VARCHAR) ### ANSWER SELECT reference FROM table_name_39 WHERE japanese_title = "アイシテル"
{ "answer": "SELECT reference FROM table_name_39 WHERE japanese_title = \"アイシテル\"", "context": "CREATE TABLE table_name_39 (reference VARCHAR, japanese_title VARCHAR)", "question": "What reference is used with the title アイシテル?" }
### QUESTION Which representative was the Ambassador Extraordinary and Plenipotentiary and had a Termination of Mission date September 20, 1996? ### CONTEXT CREATE TABLE table_name_83 (representative VARCHAR, title VARCHAR, termination_of_mission VARCHAR) ### ANSWER SELECT representative FROM table_name_83 WHERE title = "ambassador extraordinary and plenipotentiary" AND termination_of_mission = "september 20, 1996"
{ "answer": "SELECT representative FROM table_name_83 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND termination_of_mission = \"september 20, 1996\"", "context": "CREATE TABLE table_name_83 (representative VARCHAR, title VARCHAR, termination_of_mission VARCHAR)", "question": "Which representative was the Ambassador Extraordinary and Plenipotentiary and had a Termination of Mission date September 20, 1996?" }
### QUESTION Which representative has a Termination of MIssion date Mar 25, 1976? ### CONTEXT CREATE TABLE table_name_59 (representative VARCHAR, termination_of_mission VARCHAR) ### ANSWER SELECT representative FROM table_name_59 WHERE termination_of_mission = "mar 25, 1976"
{ "answer": "SELECT representative FROM table_name_59 WHERE termination_of_mission = \"mar 25, 1976\"", "context": "CREATE TABLE table_name_59 (representative VARCHAR, termination_of_mission VARCHAR)", "question": "Which representative has a Termination of MIssion date Mar 25, 1976?" }
### QUESTION What is the Termination of Mission date for Marsha E. Barnes, the Ambassador Extraordinary and Plenipotentiary? ### CONTEXT CREATE TABLE table_name_34 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR) ### ANSWER SELECT termination_of_mission FROM table_name_34 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "marsha e. barnes"
{ "answer": "SELECT termination_of_mission FROM table_name_34 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"marsha e. barnes\"", "context": "CREATE TABLE table_name_34 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)", "question": "What is the Termination of Mission date for Marsha E. Barnes, the Ambassador Extraordinary and Plenipotentiary?" }
### QUESTION Who appointed the representative that had a Presentation of Credentials on March 25, 1976? ### CONTEXT CREATE TABLE table_name_72 (appointed_by VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT appointed_by FROM table_name_72 WHERE presentation_of_credentials = "march 25, 1976"
{ "answer": "SELECT appointed_by FROM table_name_72 WHERE presentation_of_credentials = \"march 25, 1976\"", "context": "CREATE TABLE table_name_72 (appointed_by VARCHAR, presentation_of_credentials VARCHAR)", "question": "Who appointed the representative that had a Presentation of Credentials on March 25, 1976?" }
### QUESTION What is the position of the player who has ongoing first-team goals and currently plays for the Aston Villa club? ### CONTEXT CREATE TABLE table_name_79 (position VARCHAR, first_team_goals VARCHAR, current_club VARCHAR) ### ANSWER SELECT position FROM table_name_79 WHERE first_team_goals = "ongoing" AND current_club = "aston villa"
{ "answer": "SELECT position FROM table_name_79 WHERE first_team_goals = \"ongoing\" AND current_club = \"aston villa\"", "context": "CREATE TABLE table_name_79 (position VARCHAR, first_team_goals VARCHAR, current_club VARCHAR)", "question": "What is the position of the player who has ongoing first-team goals and currently plays for the Aston Villa club?" }
### QUESTION What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers? ### CONTEXT CREATE TABLE table_name_28 (current_club VARCHAR, player VARCHAR, first_team_appearances VARCHAR, position VARCHAR) ### ANSWER SELECT current_club FROM table_name_28 WHERE first_team_appearances = "ongoing" AND position = "midfielder" AND player = "samir carruthers"
{ "answer": "SELECT current_club FROM table_name_28 WHERE first_team_appearances = \"ongoing\" AND position = \"midfielder\" AND player = \"samir carruthers\"", "context": "CREATE TABLE table_name_28 (current_club VARCHAR, player VARCHAR, first_team_appearances VARCHAR, position VARCHAR)", "question": "What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers?" }
### QUESTION What position has ongoing first-team appearances, Graham Burke for a player, and whose club is Aston Villa? ### CONTEXT CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, first_team_appearances VARCHAR, current_club VARCHAR) ### ANSWER SELECT position FROM table_name_47 WHERE first_team_appearances = "ongoing" AND current_club = "aston villa" AND player = "graham burke"
{ "answer": "SELECT position FROM table_name_47 WHERE first_team_appearances = \"ongoing\" AND current_club = \"aston villa\" AND player = \"graham burke\"", "context": "CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, first_team_appearances VARCHAR, current_club VARCHAR)", "question": "What position has ongoing first-team appearances, Graham Burke for a player, and whose club is Aston Villa?" }
### QUESTION What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has? ### CONTEXT CREATE TABLE table_name_41 (frequency_mhz VARCHAR, city_of_license VARCHAR, erp_w VARCHAR) ### ANSWER SELECT COUNT(frequency_mhz) FROM table_name_41 WHERE city_of_license = "port charlotte, florida" AND erp_w > 10
{ "answer": "SELECT COUNT(frequency_mhz) FROM table_name_41 WHERE city_of_license = \"port charlotte, florida\" AND erp_w > 10", "context": "CREATE TABLE table_name_41 (frequency_mhz VARCHAR, city_of_license VARCHAR, erp_w VARCHAR)", "question": "What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has?" }
### QUESTION What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom? ### CONTEXT CREATE TABLE table_name_8 (year INTEGER, venue VARCHAR, event VARCHAR, result VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_8 WHERE event = "50km" AND result = "2nd" AND venue = "london, united kingdom"
{ "answer": "SELECT MIN(year) FROM table_name_8 WHERE event = \"50km\" AND result = \"2nd\" AND venue = \"london, united kingdom\"", "context": "CREATE TABLE table_name_8 (year INTEGER, venue VARCHAR, event VARCHAR, result VARCHAR)", "question": "What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom?" }