text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?
### CONTEXT
CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)
### ANSWER
SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135</s> | {
"answer": "SELECT MAX(stories) FROM table_name_38 WHERE location = \"recife\" AND year_of_completion > 2007 AND height__m_ < 135",
"context": "CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)",
"question": "What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?"
} |
### QUESTION
What is the ramsan-810 transfer delay?
### CONTEXT
CREATE TABLE table_27615520_1 (latency__microseconds_ VARCHAR, product_name VARCHAR)
### ANSWER
SELECT COUNT(latency__microseconds_) FROM table_27615520_1 WHERE product_name = "RamSan-810"</s> | {
"answer": "SELECT COUNT(latency__microseconds_) FROM table_27615520_1 WHERE product_name = \"RamSan-810\"",
"context": "CREATE TABLE table_27615520_1 (latency__microseconds_ VARCHAR, product_name VARCHAR)",
"question": "What is the ramsan-810 transfer delay?"
} |
### QUESTION
List the number of ramsan-720 hard drives?
### CONTEXT
CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)
### ANSWER
SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = "RamSan-720"</s> | {
"answer": "SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = \"RamSan-720\"",
"context": "CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)",
"question": "List the number of ramsan-720 hard drives?"
} |
### QUESTION
If the special weapon is glass egg, what is the close ranged weapon?
### CONTEXT
CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, special_weapon VARCHAR)
### ANSWER
SELECT close_ranged_weapons FROM table_27704991_1 WHERE special_weapon = "Glass egg"</s> | {
"answer": "SELECT close_ranged_weapons FROM table_27704991_1 WHERE special_weapon = \"Glass egg\"",
"context": "CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, special_weapon VARCHAR)",
"question": "If the special weapon is glass egg, what is the close ranged weapon?"
} |
### QUESTION
Name the high assists for madison square garden 19,763 and record is 39–38
### CONTEXT
CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT high_assists FROM table_27713583_11 WHERE location_attendance = "Madison Square Garden 19,763" AND record = "39–38"</s> | {
"answer": "SELECT high_assists FROM table_27713583_11 WHERE location_attendance = \"Madison Square Garden 19,763\" AND record = \"39–38\"",
"context": "CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record VARCHAR)",
"question": "Name the high assists for madison square garden 19,763 and record is 39–38"
} |
### QUESTION
What is the name of the city with the Socialist Party of the Extremadurian People?
### CONTEXT
CREATE TABLE table_name_89 (city VARCHAR, name_in_english VARCHAR)
### ANSWER
SELECT city FROM table_name_89 WHERE name_in_english = "socialist party of the extremadurian people"</s> | {
"answer": "SELECT city FROM table_name_89 WHERE name_in_english = \"socialist party of the extremadurian people\"",
"context": "CREATE TABLE table_name_89 (city VARCHAR, name_in_english VARCHAR)",
"question": "What is the name of the city with the Socialist Party of the Extremadurian People?"
} |
### QUESTION
Name the Away team which have a Ground of colonial stadium on friday, 2 march?
### CONTEXT
CREATE TABLE table_name_83 (away_team VARCHAR, ground VARCHAR, date VARCHAR)
### ANSWER
SELECT away_team FROM table_name_83 WHERE ground = "colonial stadium" AND date = "friday, 2 march"</s> | {
"answer": "SELECT away_team FROM table_name_83 WHERE ground = \"colonial stadium\" AND date = \"friday, 2 march\"",
"context": "CREATE TABLE table_name_83 (away_team VARCHAR, ground VARCHAR, date VARCHAR)",
"question": "Name the Away team which have a Ground of colonial stadium on friday, 2 march?"
} |
### QUESTION
Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?
### CONTEXT
CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = "Sudket Prapakamol Saralee Thungthongkam"</s> | {
"answer": "SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = \"Sudket Prapakamol Saralee Thungthongkam\"",
"context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, mixed_doubles VARCHAR)",
"question": "Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?"
} |
### QUESTION
Who is the womens doubles on the tour french super series?
### CONTEXT
CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_27753492_2 WHERE tour = "French Super Series"</s> | {
"answer": "SELECT womens_doubles FROM table_27753492_2 WHERE tour = \"French Super Series\"",
"context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR)",
"question": "Who is the womens doubles on the tour french super series?"
} |
### QUESTION
Name the Points which has a Team of sportivo luqueño, and Wins larger than 1?
### CONTEXT
CREATE TABLE table_name_41 (points INTEGER, team VARCHAR, wins VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_name_41 WHERE team = "sportivo luqueño" AND wins > 1</s> | {
"answer": "SELECT MIN(points) FROM table_name_41 WHERE team = \"sportivo luqueño\" AND wins > 1",
"context": "CREATE TABLE table_name_41 (points INTEGER, team VARCHAR, wins VARCHAR)",
"question": "Name the Points which has a Team of sportivo luqueño, and Wins larger than 1?"
} |
### QUESTION
what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?
### CONTEXT
CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547</s> | {
"answer": "SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547",
"context": "CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)",
"question": "what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?"
} |
### QUESTION
what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1?
### CONTEXT
CREATE TABLE table_name_41 (best_finish VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR, earnings___$__ VARCHAR)
### ANSWER
SELECT best_finish FROM table_name_41 WHERE money_list_rank = "n/a" AND earnings___$__ > 0 AND cuts_made > 1</s> | {
"answer": "SELECT best_finish FROM table_name_41 WHERE money_list_rank = \"n/a\" AND earnings___$__ > 0 AND cuts_made > 1",
"context": "CREATE TABLE table_name_41 (best_finish VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR, earnings___$__ VARCHAR)",
"question": "what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1?"
} |
### QUESTION
how many times is the money list rank 221 and cuts more than 2?
### CONTEXT
CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR)
### ANSWER
SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = "221" AND cuts_made > 2</s> | {
"answer": "SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = \"221\" AND cuts_made > 2",
"context": "CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR)",
"question": "how many times is the money list rank 221 and cuts more than 2?"
} |
### QUESTION
What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012?
### CONTEXT
CREATE TABLE table_name_17 (original_air_date INTEGER, dvd_region_2_release_date VARCHAR, number_of_episodes VARCHAR)
### ANSWER
SELECT MAX(original_air_date) FROM table_name_17 WHERE dvd_region_2_release_date = "23 april 2012" AND number_of_episodes > 10</s> | {
"answer": "SELECT MAX(original_air_date) FROM table_name_17 WHERE dvd_region_2_release_date = \"23 april 2012\" AND number_of_episodes > 10",
"context": "CREATE TABLE table_name_17 (original_air_date INTEGER, dvd_region_2_release_date VARCHAR, number_of_episodes VARCHAR)",
"question": "What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012?"
} |
### QUESTION
What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012?
### CONTEXT
CREATE TABLE table_name_99 (number_of_episodes INTEGER, dvd_region_2_release_date VARCHAR, original_air_date VARCHAR, series_number VARCHAR)
### ANSWER
SELECT SUM(number_of_episodes) FROM table_name_99 WHERE original_air_date > 1991 AND series_number < 21 AND dvd_region_2_release_date = "26 march 2012"</s> | {
"answer": "SELECT SUM(number_of_episodes) FROM table_name_99 WHERE original_air_date > 1991 AND series_number < 21 AND dvd_region_2_release_date = \"26 march 2012\"",
"context": "CREATE TABLE table_name_99 (number_of_episodes INTEGER, dvd_region_2_release_date VARCHAR, original_air_date VARCHAR, series_number VARCHAR)",
"question": "What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012?"
} |
### QUESTION
What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004?
### CONTEXT
CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR)
### ANSWER
SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = "26 july 2004" AND number_of_episodes > 7</s> | {
"answer": "SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = \"26 july 2004\" AND number_of_episodes > 7",
"context": "CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR)",
"question": "What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004?"
} |
### QUESTION
How many times has Ma Long won the men's singles?
### CONTEXT
CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, mens_singles VARCHAR)
### ANSWER
SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE mens_singles = "Ma Long"</s> | {
"answer": "SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE mens_singles = \"Ma Long\"",
"context": "CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, mens_singles VARCHAR)",
"question": "How many times has Ma Long won the men's singles?"
} |
### QUESTION
What is Opponent, when Event is "ISCF - Southeast Championships"?
### CONTEXT
CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)
### ANSWER
SELECT opponent FROM table_name_17 WHERE event = "iscf - southeast championships"</s> | {
"answer": "SELECT opponent FROM table_name_17 WHERE event = \"iscf - southeast championships\"",
"context": "CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)",
"question": "What is Opponent, when Event is \"ISCF - Southeast Championships\"?"
} |
### QUESTION
What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader?
### CONTEXT
CREATE TABLE table_name_99 (method VARCHAR, event VARCHAR)
### ANSWER
SELECT method FROM table_name_99 WHERE event = "ufc fight night: teixeira vs. bader"</s> | {
"answer": "SELECT method FROM table_name_99 WHERE event = \"ufc fight night: teixeira vs. bader\"",
"context": "CREATE TABLE table_name_99 (method VARCHAR, event VARCHAR)",
"question": "What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader?"
} |
### QUESTION
Who was the U21 Mens winner when Mike Marsden was the mixed restricted winner and Claire Nelson was the U21 Womens winner?
### CONTEXT
CREATE TABLE table_28211674_3 (u21_mens VARCHAR, mixed_restricted VARCHAR, u21_womens VARCHAR)
### ANSWER
SELECT u21_mens FROM table_28211674_3 WHERE mixed_restricted = "Mike Marsden" AND u21_womens = "Claire Nelson"</s> | {
"answer": "SELECT u21_mens FROM table_28211674_3 WHERE mixed_restricted = \"Mike Marsden\" AND u21_womens = \"Claire Nelson\"",
"context": "CREATE TABLE table_28211674_3 (u21_mens VARCHAR, mixed_restricted VARCHAR, u21_womens VARCHAR)",
"question": "Who was the U21 Mens winner when Mike Marsden was the mixed restricted winner and Claire Nelson was the U21 Womens winner? "
} |
### QUESTION
What was the maximum speed for straight-4, 1.466 cc Type r 150?
### CONTEXT
CREATE TABLE table_name_60 (vmax VARCHAR, type VARCHAR, cylinder VARCHAR, capacity VARCHAR)
### ANSWER
SELECT vmax FROM table_name_60 WHERE cylinder = "straight-4" AND capacity = "1.466 cc" AND type = "r 150"</s> | {
"answer": "SELECT vmax FROM table_name_60 WHERE cylinder = \"straight-4\" AND capacity = \"1.466 cc\" AND type = \"r 150\"",
"context": "CREATE TABLE table_name_60 (vmax VARCHAR, type VARCHAR, cylinder VARCHAR, capacity VARCHAR)",
"question": "What was the maximum speed for straight-4, 1.466 cc Type r 150?"
} |
### QUESTION
Who won the mixed restricted when Tomasz Rzeszotko won the mixed veteran and Karina Le Fevre won the U21 womens?
### CONTEXT
CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mixed_veteran VARCHAR, u21_womens VARCHAR)
### ANSWER
SELECT mixed_restricted FROM table_28211674_3 WHERE mixed_veteran = "Tomasz Rzeszotko" AND u21_womens = "Karina Le Fevre"</s> | {
"answer": "SELECT mixed_restricted FROM table_28211674_3 WHERE mixed_veteran = \"Tomasz Rzeszotko\" AND u21_womens = \"Karina Le Fevre\"",
"context": "CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mixed_veteran VARCHAR, u21_womens VARCHAR)",
"question": "Who won the mixed restricted when Tomasz Rzeszotko won the mixed veteran and Karina Le Fevre won the U21 womens?"
} |
### QUESTION
When Matt Ware won the mens singles, who won the mixed restricted?
### CONTEXT
CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mens_singles VARCHAR)
### ANSWER
SELECT mixed_restricted FROM table_28211674_3 WHERE mens_singles = "Matt Ware"</s> | {
"answer": "SELECT mixed_restricted FROM table_28211674_3 WHERE mens_singles = \"Matt Ware\"",
"context": "CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mens_singles VARCHAR)",
"question": "When Matt Ware won the mens singles, who won the mixed restricted?"
} |
### QUESTION
What was the To par for United States golfer fred couples?
### CONTEXT
CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_17 WHERE country = "united states" AND player = "fred couples"</s> | {
"answer": "SELECT to_par FROM table_name_17 WHERE country = \"united states\" AND player = \"fred couples\"",
"context": "CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR)",
"question": "What was the To par for United States golfer fred couples?"
} |
### QUESTION
How many draft pick positions did Matt Bradley have?
### CONTEXT
CREATE TABLE table_2840500_4 (position VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(position) FROM table_2840500_4 WHERE player = "Matt Bradley"</s> | {
"answer": "SELECT COUNT(position) FROM table_2840500_4 WHERE player = \"Matt Bradley\"",
"context": "CREATE TABLE table_2840500_4 (position VARCHAR, player VARCHAR)",
"question": "How many draft pick positions did Matt Bradley have?"
} |
### QUESTION
What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6?
### CONTEXT
CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_56 WHERE class = "piw" AND program_title = "the adventures of..." AND score > 94.6</s> | {
"answer": "SELECT COUNT(year) FROM table_name_56 WHERE class = \"piw\" AND program_title = \"the adventures of...\" AND score > 94.6",
"context": "CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR)",
"question": "What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6?"
} |
### QUESTION
Name the college for andrej podkonicky
### CONTEXT
CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_2840500_8 WHERE player = "Andrej Podkonicky"</s> | {
"answer": "SELECT college_junior_club_team FROM table_2840500_8 WHERE player = \"Andrej Podkonicky\"",
"context": "CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR)",
"question": "Name the college for andrej podkonicky"
} |
### QUESTION
How many head coaches did Kent state golden flashes have?
### CONTEXT
CREATE TABLE table_28418916_3 (opponents_head_coach VARCHAR, fbs_opponent VARCHAR)
### ANSWER
SELECT COUNT(opponents_head_coach) FROM table_28418916_3 WHERE fbs_opponent = "Kent State Golden Flashes"</s> | {
"answer": "SELECT COUNT(opponents_head_coach) FROM table_28418916_3 WHERE fbs_opponent = \"Kent State Golden Flashes\"",
"context": "CREATE TABLE table_28418916_3 (opponents_head_coach VARCHAR, fbs_opponent VARCHAR)",
"question": "How many head coaches did Kent state golden flashes have?"
} |
### QUESTION
Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?
### CONTEXT
CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)
### ANSWER
SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = "field" AND ofsted_number > 117160</s> | {
"answer": "SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = \"field\" AND ofsted_number > 117160",
"context": "CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)",
"question": "Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?"
} |
### QUESTION
Can you tell me the Name that has the DCSF number of 2117?
### CONTEXT
CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR)
### ANSWER
SELECT name FROM table_name_11 WHERE dcsf_number = 2117</s> | {
"answer": "SELECT name FROM table_name_11 WHERE dcsf_number = 2117",
"context": "CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR)",
"question": "Can you tell me the Name that has the DCSF number of 2117?"
} |
### QUESTION
What is Date, when Week is 11?
### CONTEXT
CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR)
### ANSWER
SELECT date FROM table_name_45 WHERE week = 11</s> | {
"answer": "SELECT date FROM table_name_45 WHERE week = 11",
"context": "CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR)",
"question": "What is Date, when Week is 11?"
} |
### QUESTION
How much international freight has a change of +0,2% with more than 0 international mail?
### CONTEXT
CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR)
### ANSWER
SELECT COUNT(international_freight) FROM table_name_75 WHERE change = "+0,2%" AND international_mail > 0</s> | {
"answer": "SELECT COUNT(international_freight) FROM table_name_75 WHERE change = \"+0,2%\" AND international_mail > 0",
"context": "CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR)",
"question": "How much international freight has a change of +0,2% with more than 0 international mail?"
} |
### QUESTION
What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?
### CONTEXT
CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)
### ANSWER
SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695</s> | {
"answer": "SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695",
"context": "CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)",
"question": "What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?"
} |
### QUESTION
What selection was the springfield olympics (nejhl)?
### CONTEXT
CREATE TABLE table_2850912_12 (pick__number INTEGER, college_junior_club_team VARCHAR)
### ANSWER
SELECT MAX(pick__number) FROM table_2850912_12 WHERE college_junior_club_team = "Springfield Olympics (NEJHL)"</s> | {
"answer": "SELECT MAX(pick__number) FROM table_2850912_12 WHERE college_junior_club_team = \"Springfield Olympics (NEJHL)\"",
"context": "CREATE TABLE table_2850912_12 (pick__number INTEGER, college_junior_club_team VARCHAR)",
"question": "What selection was the springfield olympics (nejhl)?"
} |
### QUESTION
What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?
### CONTEXT
CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
### ANSWER
SELECT tenure FROM table_name_95 WHERE cause_of_death = "helicopter accident" AND badge_serial_number = "16805"</s> | {
"answer": "SELECT tenure FROM table_name_95 WHERE cause_of_death = \"helicopter accident\" AND badge_serial_number = \"16805\"",
"context": "CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)",
"question": "What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?"
} |
### QUESTION
What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?
### CONTEXT
CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR)
### ANSWER
SELECT badge_serial_number FROM table_name_58 WHERE rank = "policeman" AND cause_of_death = "gunfire" AND date_of_death = "1919-02-18"</s> | {
"answer": "SELECT badge_serial_number FROM table_name_58 WHERE rank = \"policeman\" AND cause_of_death = \"gunfire\" AND date_of_death = \"1919-02-18\"",
"context": "CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR)",
"question": "What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?"
} |
### QUESTION
What is Team, when Tries Against is 8?
### CONTEXT
CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)
### ANSWER
SELECT team FROM table_name_40 WHERE tries_against = "8"</s> | {
"answer": "SELECT team FROM table_name_40 WHERE tries_against = \"8\"",
"context": "CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)",
"question": "What is Team, when Tries Against is 8?"
} |
### QUESTION
What is Points Against, when Try Diff is +22?
### CONTEXT
CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR)
### ANSWER
SELECT points_against FROM table_name_88 WHERE try_diff = "+22"</s> | {
"answer": "SELECT points_against FROM table_name_88 WHERE try_diff = \"+22\"",
"context": "CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR)",
"question": "What is Points Against, when Try Diff is +22?"
} |
### QUESTION
What is Record, when Event is "Independent Event", and when Method is "Submission (Peruvian Necktie)"?
### CONTEXT
CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VARCHAR)
### ANSWER
SELECT record FROM table_name_2 WHERE event = "independent event" AND method = "submission (peruvian necktie)"</s> | {
"answer": "SELECT record FROM table_name_2 WHERE event = \"independent event\" AND method = \"submission (peruvian necktie)\"",
"context": "CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VARCHAR)",
"question": "What is Record, when Event is \"Independent Event\", and when Method is \"Submission (Peruvian Necktie)\"?"
} |
### QUESTION
Who were the original artist(s) on harder to breathe?
### CONTEXT
CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)
### ANSWER
SELECT original_artist FROM table_28715942_2 WHERE track = "Harder To Breathe"</s> | {
"answer": "SELECT original_artist FROM table_28715942_2 WHERE track = \"Harder To Breathe\"",
"context": "CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)",
"question": "Who were the original artist(s) on harder to breathe?"
} |
### QUESTION
Who is the artist where the vocal percussionist is Benjamin Holder?
### CONTEXT
CREATE TABLE table_28715942_6 (original_artist VARCHAR, vocal_percussionist VARCHAR)
### ANSWER
SELECT original_artist FROM table_28715942_6 WHERE vocal_percussionist = "Benjamin Holder"</s> | {
"answer": "SELECT original_artist FROM table_28715942_6 WHERE vocal_percussionist = \"Benjamin Holder\"",
"context": "CREATE TABLE table_28715942_6 (original_artist VARCHAR, vocal_percussionist VARCHAR)",
"question": "Who is the artist where the vocal percussionist is Benjamin Holder?"
} |
### QUESTION
which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley?
### CONTEXT
CREATE TABLE table_name_82 (channel VARCHAR, studio_analysts VARCHAR, play_by_play VARCHAR, studio_host VARCHAR)
### ANSWER
SELECT channel FROM table_name_82 WHERE play_by_play = "paul sunderland" AND studio_host = "bill macdonald" AND studio_analysts = "jack haley"</s> | {
"answer": "SELECT channel FROM table_name_82 WHERE play_by_play = \"paul sunderland\" AND studio_host = \"bill macdonald\" AND studio_analysts = \"jack haley\"",
"context": "CREATE TABLE table_name_82 (channel VARCHAR, studio_analysts VARCHAR, play_by_play VARCHAR, studio_host VARCHAR)",
"question": "which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley?"
} |
### QUESTION
Which Destination has a Stopping pattern of [2777] mciver station platforms?
### CONTEXT
CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR)
### ANSWER
SELECT destination FROM table_name_47 WHERE stopping_pattern = "[2777] mciver station platforms"</s> | {
"answer": "SELECT destination FROM table_name_47 WHERE stopping_pattern = \"[2777] mciver station platforms\"",
"context": "CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR)",
"question": "Which Destination has a Stopping pattern of [2777] mciver station platforms?"
} |
### QUESTION
What was the capacity for the Denver Broncos?
### CONTEXT
CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, team VARCHAR)
### ANSWER
SELECT capacity_percentage FROM table_28884858_2 WHERE team = "Denver Broncos"</s> | {
"answer": "SELECT capacity_percentage FROM table_28884858_2 WHERE team = \"Denver Broncos\"",
"context": "CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, team VARCHAR)",
"question": "What was the capacity for the Denver Broncos?"
} |
### QUESTION
Which Stopping pattern has a Platform of [2777] mciver station platforms?
### CONTEXT
CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR)
### ANSWER
SELECT stopping_pattern FROM table_name_50 WHERE platform = "[2777] mciver station platforms"</s> | {
"answer": "SELECT stopping_pattern FROM table_name_50 WHERE platform = \"[2777] mciver station platforms\"",
"context": "CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR)",
"question": "Which Stopping pattern has a Platform of [2777] mciver station platforms?"
} |
### QUESTION
What is the postal code when the administrative capital in Bori?
### CONTEXT
CREATE TABLE table_28891101_3 (postal_code INTEGER, administrative_capital VARCHAR)
### ANSWER
SELECT MAX(postal_code) FROM table_28891101_3 WHERE administrative_capital = "Bori"</s> | {
"answer": "SELECT MAX(postal_code) FROM table_28891101_3 WHERE administrative_capital = \"Bori\"",
"context": "CREATE TABLE table_28891101_3 (postal_code INTEGER, administrative_capital VARCHAR)",
"question": "What is the postal code when the administrative capital in Bori?"
} |
### QUESTION
What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?
### CONTEXT
CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_39 WHERE attendance = "95,000" AND runner_up = "dresdner sc"</s> | {
"answer": "SELECT SUM(year) FROM table_name_39 WHERE attendance = \"95,000\" AND runner_up = \"dresdner sc\"",
"context": "CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR)",
"question": "What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?"
} |
### QUESTION
What player attended avon old farms (ushs-ct)?
### CONTEXT
CREATE TABLE table_2897457_5 (player VARCHAR, college_junior_club_team VARCHAR)
### ANSWER
SELECT player FROM table_2897457_5 WHERE college_junior_club_team = "Avon Old Farms (USHS-CT)"</s> | {
"answer": "SELECT player FROM table_2897457_5 WHERE college_junior_club_team = \"Avon Old Farms (USHS-CT)\"",
"context": "CREATE TABLE table_2897457_5 (player VARCHAR, college_junior_club_team VARCHAR)",
"question": "What player attended avon old farms (ushs-ct)?"
} |
### QUESTION
Which game is located in Boston Garden and has a record of 49-17?
### CONTEXT
CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR)
### ANSWER
SELECT game FROM table_name_81 WHERE location = "boston garden" AND record = "49-17"</s> | {
"answer": "SELECT game FROM table_name_81 WHERE location = \"boston garden\" AND record = \"49-17\"",
"context": "CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR)",
"question": "Which game is located in Boston Garden and has a record of 49-17?"
} |
### QUESTION
what is the race title when the winner is dick johnson and the circuit is sandown raceway?
### CONTEXT
CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
### ANSWER
SELECT race_title FROM table_name_53 WHERE winner = "dick johnson" AND circuit = "sandown raceway"</s> | {
"answer": "SELECT race_title FROM table_name_53 WHERE winner = \"dick johnson\" AND circuit = \"sandown raceway\"",
"context": "CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)",
"question": "what is the race title when the winner is dick johnson and the circuit is sandown raceway?"
} |
### QUESTION
What is Record, when Opponent is San Francisco Warriors?
### CONTEXT
CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_name_78 WHERE opponent = "san francisco warriors"</s> | {
"answer": "SELECT record FROM table_name_78 WHERE opponent = \"san francisco warriors\"",
"context": "CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)",
"question": "What is Record, when Opponent is San Francisco Warriors?"
} |
### QUESTION
What is the takeover date of the FA division mitre?
### CONTEXT
CREATE TABLE table_name_19 (takeover_date VARCHAR, fa_division_s_ VARCHAR)
### ANSWER
SELECT takeover_date FROM table_name_19 WHERE fa_division_s_ = "mitre"</s> | {
"answer": "SELECT takeover_date FROM table_name_19 WHERE fa_division_s_ = \"mitre\"",
"context": "CREATE TABLE table_name_19 (takeover_date VARCHAR, fa_division_s_ VARCHAR)",
"question": "What is the takeover date of the FA division mitre?"
} |
### QUESTION
What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth?
### CONTEXT
CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
### ANSWER
SELECT race_name FROM table_name_16 WHERE winning_team = "mi-jack conquest racing" AND pole_position = "andreas wirth"</s> | {
"answer": "SELECT race_name FROM table_name_16 WHERE winning_team = \"mi-jack conquest racing\" AND pole_position = \"andreas wirth\"",
"context": "CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR)",
"question": "What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth?"
} |
### QUESTION
What race after round 6 did Graham Rahal win with a pole position of graham rahal?
### CONTEXT
CREATE TABLE table_name_59 (race_name VARCHAR, pole_position VARCHAR, winning_driver VARCHAR, round VARCHAR)
### ANSWER
SELECT race_name FROM table_name_59 WHERE winning_driver = "graham rahal" AND round > 6 AND pole_position = "graham rahal"</s> | {
"answer": "SELECT race_name FROM table_name_59 WHERE winning_driver = \"graham rahal\" AND round > 6 AND pole_position = \"graham rahal\"",
"context": "CREATE TABLE table_name_59 (race_name VARCHAR, pole_position VARCHAR, winning_driver VARCHAR, round VARCHAR)",
"question": "What race after round 6 did Graham Rahal win with a pole position of graham rahal?"
} |
### QUESTION
what is the score when the country is united states, the to par is +2 and the player is phil hancock?
### CONTEXT
CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)
### ANSWER
SELECT score FROM table_name_49 WHERE country = "united states" AND to_par = "+2" AND player = "phil hancock"</s> | {
"answer": "SELECT score FROM table_name_49 WHERE country = \"united states\" AND to_par = \"+2\" AND player = \"phil hancock\"",
"context": "CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)",
"question": "what is the score when the country is united states, the to par is +2 and the player is phil hancock?"
} |
### QUESTION
What was the time of the games that took place at the cassell coliseum • blacksburg, va?
### CONTEXT
CREATE TABLE table_29535057_4 (time VARCHAR, location VARCHAR)
### ANSWER
SELECT time FROM table_29535057_4 WHERE location = "Cassell Coliseum • Blacksburg, VA"</s> | {
"answer": "SELECT time FROM table_29535057_4 WHERE location = \"Cassell Coliseum • Blacksburg, VA\"",
"context": "CREATE TABLE table_29535057_4 (time VARCHAR, location VARCHAR)",
"question": "What was the time of the games that took place at the cassell coliseum • blacksburg, va?"
} |
### QUESTION
who is the player when the country is united states and the score is 71-73=144?
### CONTEXT
CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_93 WHERE country = "united states" AND score = 71 - 73 = 144</s> | {
"answer": "SELECT player FROM table_name_93 WHERE country = \"united states\" AND score = 71 - 73 = 144",
"context": "CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR, score VARCHAR)",
"question": "who is the player when the country is united states and the score is 71-73=144?"
} |
### QUESTION
What's the name of the city or town of the school that operates the http://www.mfschools.org/high/ website?
### CONTEXT
CREATE TABLE table_29612224_1 (institution VARCHAR, school_website VARCHAR)
### ANSWER
SELECT institution FROM table_29612224_1 WHERE school_website = "http://www.mfschools.org/high/"</s> | {
"answer": "SELECT institution FROM table_29612224_1 WHERE school_website = \"http://www.mfschools.org/high/\"",
"context": "CREATE TABLE table_29612224_1 (institution VARCHAR, school_website VARCHAR)",
"question": "What's the name of the city or town of the school that operates the http://www.mfschools.org/high/ website?"
} |
### QUESTION
Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap?
### CONTEXT
CREATE TABLE table_29690363_3 (pole_position VARCHAR, rd VARCHAR, most_laps_led VARCHAR, fastest_lap VARCHAR)
### ANSWER
SELECT pole_position FROM table_29690363_3 WHERE most_laps_led = "Esteban Guerrieri" AND fastest_lap = "Josef Newgarden" AND rd = "8A"</s> | {
"answer": "SELECT pole_position FROM table_29690363_3 WHERE most_laps_led = \"Esteban Guerrieri\" AND fastest_lap = \"Josef Newgarden\" AND rd = \"8A\"",
"context": "CREATE TABLE table_29690363_3 (pole_position VARCHAR, rd VARCHAR, most_laps_led VARCHAR, fastest_lap VARCHAR)",
"question": "Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap?"
} |
### QUESTION
When chase harrison category:articles with hcards is the name what is the year?
### CONTEXT
CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)
### ANSWER
SELECT years FROM table_29743928_4 WHERE name = "Chase Harrison Category:Articles with hCards"</s> | {
"answer": "SELECT years FROM table_29743928_4 WHERE name = \"Chase Harrison Category:Articles with hCards\"",
"context": "CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)",
"question": "When chase harrison category:articles with hcards is the name what is the year?"
} |
### QUESTION
Which song was chosen during the audition week?
### CONTEXT
CREATE TABLE table_29756040_1 (song_choice VARCHAR, week__number VARCHAR)
### ANSWER
SELECT song_choice FROM table_29756040_1 WHERE week__number = "Audition"</s> | {
"answer": "SELECT song_choice FROM table_29756040_1 WHERE week__number = \"Audition\"",
"context": "CREATE TABLE table_29756040_1 (song_choice VARCHAR, week__number VARCHAR)",
"question": "Which song was chosen during the audition week?"
} |
### QUESTION
What is the voltage of the Pentiumiii866 microprocessor with a socket 370?
### CONTEXT
CREATE TABLE table_name_8 (voltage VARCHAR, socket VARCHAR, model_number VARCHAR)
### ANSWER
SELECT voltage FROM table_name_8 WHERE socket = "socket 370" AND model_number = "pentiumiii866"</s> | {
"answer": "SELECT voltage FROM table_name_8 WHERE socket = \"socket 370\" AND model_number = \"pentiumiii866\"",
"context": "CREATE TABLE table_name_8 (voltage VARCHAR, socket VARCHAR, model_number VARCHAR)",
"question": "What is the voltage of the Pentiumiii866 microprocessor with a socket 370?"
} |
### QUESTION
who directed the episode that have 0.25 million u.s viewers
### CONTEXT
CREATE TABLE table_29803475_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
### ANSWER
SELECT directed_by FROM table_29803475_3 WHERE us_viewers__million_ = "0.25"</s> | {
"answer": "SELECT directed_by FROM table_29803475_3 WHERE us_viewers__million_ = \"0.25\"",
"context": "CREATE TABLE table_29803475_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)",
"question": "who directed the episode that have 0.25 million u.s viewers"
} |
### QUESTION
What is the Date of the match with a Score in the final of 6–3, 6–3, 2–6, 6–4?
### CONTEXT
CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR)
### ANSWER
SELECT date FROM table_name_9 WHERE score_in_the_final = "6–3, 6–3, 2–6, 6–4"</s> | {
"answer": "SELECT date FROM table_name_9 WHERE score_in_the_final = \"6–3, 6–3, 2–6, 6–4\"",
"context": "CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR)",
"question": "What is the Date of the match with a Score in the final of 6–3, 6–3, 2–6, 6–4?"
} |
### QUESTION
What pick number did Real Salt Lake get?
### CONTEXT
CREATE TABLE table_29836557_2 (pick__number INTEGER, mls_team VARCHAR)
### ANSWER
SELECT MIN(pick__number) FROM table_29836557_2 WHERE mls_team = "Real Salt Lake"</s> | {
"answer": "SELECT MIN(pick__number) FROM table_29836557_2 WHERE mls_team = \"Real Salt Lake\"",
"context": "CREATE TABLE table_29836557_2 (pick__number INTEGER, mls_team VARCHAR)",
"question": "What pick number did Real Salt Lake get?"
} |
### QUESTION
What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11?
### CONTEXT
CREATE TABLE table_name_85 (against INTEGER, favour VARCHAR, lost VARCHAR, draw VARCHAR)
### ANSWER
SELECT MAX(against) FROM table_name_85 WHERE lost < 20 AND draw > 2 AND favour < 11</s> | {
"answer": "SELECT MAX(against) FROM table_name_85 WHERE lost < 20 AND draw > 2 AND favour < 11",
"context": "CREATE TABLE table_name_85 (against INTEGER, favour VARCHAR, lost VARCHAR, draw VARCHAR)",
"question": "What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11?"
} |
### QUESTION
What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488?
### CONTEXT
CREATE TABLE table_name_60 (long INTEGER, gain VARCHAR, avg_g VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(long) FROM table_name_60 WHERE avg_g > -2.2 AND name = "total" AND gain > 2 OFFSET 488</s> | {
"answer": "SELECT MIN(long) FROM table_name_60 WHERE avg_g > -2.2 AND name = \"total\" AND gain > 2 OFFSET 488",
"context": "CREATE TABLE table_name_60 (long INTEGER, gain VARCHAR, avg_g VARCHAR, name VARCHAR)",
"question": "What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488?"
} |
### QUESTION
What is the accreditation level of the network brand Movistar?
### CONTEXT
CREATE TABLE table_name_76 (accreditation_level VARCHAR, network_brand_name VARCHAR)
### ANSWER
SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = "movistar"</s> | {
"answer": "SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = \"movistar\"",
"context": "CREATE TABLE table_name_76 (accreditation_level VARCHAR, network_brand_name VARCHAR)",
"question": "What is the accreditation level of the network brand Movistar?"
} |
### QUESTION
Name the townland for fermoy and ballynoe
### CONTEXT
CREATE TABLE table_30120664_1 (townland VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR)
### ANSWER
SELECT townland FROM table_30120664_1 WHERE poor_law_union = "Fermoy" AND civil_parish = "Ballynoe"</s> | {
"answer": "SELECT townland FROM table_30120664_1 WHERE poor_law_union = \"Fermoy\" AND civil_parish = \"Ballynoe\"",
"context": "CREATE TABLE table_30120664_1 (townland VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR)",
"question": "Name the townland for fermoy and ballynoe"
} |
### QUESTION
What is the poor law union of the Kilmaloda townland?
### CONTEXT
CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)
### ANSWER
SELECT poor_law_union FROM table_30121046_1 WHERE townland = "Kilmaloda"</s> | {
"answer": "SELECT poor_law_union FROM table_30121046_1 WHERE townland = \"Kilmaloda\"",
"context": "CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)",
"question": "What is the poor law union of the Kilmaloda townland?"
} |
### QUESTION
What is the total number in 2006, which has an official foundation of municipality of 1918?
### CONTEXT
CREATE TABLE table_name_95 (date_of_official_foundation_of_municipality VARCHAR)
### ANSWER
SELECT COUNT(2006) FROM table_name_95 WHERE date_of_official_foundation_of_municipality = 1918</s> | {
"answer": "SELECT COUNT(2006) FROM table_name_95 WHERE date_of_official_foundation_of_municipality = 1918",
"context": "CREATE TABLE table_name_95 (date_of_official_foundation_of_municipality VARCHAR)",
"question": "What is the total number in 2006, which has an official foundation of municipality of 1918?"
} |
### QUESTION
What is the rank for the episode that premiered on September 13, 1978?
### CONTEXT
CREATE TABLE table_name_21 (rank VARCHAR, premiere VARCHAR)
### ANSWER
SELECT rank FROM table_name_21 WHERE premiere = "september 13, 1978"</s> | {
"answer": "SELECT rank FROM table_name_21 WHERE premiere = \"september 13, 1978\"",
"context": "CREATE TABLE table_name_21 (rank VARCHAR, premiere VARCHAR)",
"question": "What is the rank for the episode that premiered on September 13, 1978?"
} |
### QUESTION
Tell me the rank for bronze less than 17 and gold less than 1
### CONTEXT
CREATE TABLE table_name_28 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
### ANSWER
SELECT rank FROM table_name_28 WHERE bronze < 17 AND silver > 1 AND gold < 1</s> | {
"answer": "SELECT rank FROM table_name_28 WHERE bronze < 17 AND silver > 1 AND gold < 1",
"context": "CREATE TABLE table_name_28 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)",
"question": "Tell me the rank for bronze less than 17 and gold less than 1"
} |
### QUESTION
What was Herdez Competition's total points with a grid larger than 1?
### CONTEXT
CREATE TABLE table_name_39 (points VARCHAR, team VARCHAR, grid VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_39 WHERE team = "herdez competition" AND grid > 1</s> | {
"answer": "SELECT COUNT(points) FROM table_name_39 WHERE team = \"herdez competition\" AND grid > 1",
"context": "CREATE TABLE table_name_39 (points VARCHAR, team VARCHAR, grid VARCHAR)",
"question": "What was Herdez Competition's total points with a grid larger than 1?"
} |
### QUESTION
Tell me the total number of top 25 for wins less than 1 and cuts made of 22
### CONTEXT
CREATE TABLE table_name_59 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)
### ANSWER
SELECT COUNT(top_25) FROM table_name_59 WHERE cuts_made = 22 AND wins < 1</s> | {
"answer": "SELECT COUNT(top_25) FROM table_name_59 WHERE cuts_made = 22 AND wins < 1",
"context": "CREATE TABLE table_name_59 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)",
"question": "Tell me the total number of top 25 for wins less than 1 and cuts made of 22"
} |
### QUESTION
What is the Partner of the match with a Score in Final of 5–7, 4–6?
### CONTEXT
CREATE TABLE table_name_92 (partner VARCHAR, score_in_final VARCHAR)
### ANSWER
SELECT partner FROM table_name_92 WHERE score_in_final = "5–7, 4–6"</s> | {
"answer": "SELECT partner FROM table_name_92 WHERE score_in_final = \"5–7, 4–6\"",
"context": "CREATE TABLE table_name_92 (partner VARCHAR, score_in_final VARCHAR)",
"question": "What is the Partner of the match with a Score in Final of 5–7, 4–6?"
} |
### QUESTION
What is 2001, when 1989 is "A", and when Tournament is "U.S. Open"?
### CONTEXT
CREATE TABLE table_name_94 (tournament VARCHAR)
### ANSWER
SELECT 2001 FROM table_name_94 WHERE 1989 = "a" AND tournament = "u.s. open"</s> | {
"answer": "SELECT 2001 FROM table_name_94 WHERE 1989 = \"a\" AND tournament = \"u.s. open\"",
"context": "CREATE TABLE table_name_94 (tournament VARCHAR)",
"question": "What is 2001, when 1989 is \"A\", and when Tournament is \"U.S. Open\"?"
} |
### QUESTION
Name the title of jean-pierre jeunet
### CONTEXT
CREATE TABLE table_name_17 (english_title VARCHAR, director VARCHAR)
### ANSWER
SELECT english_title FROM table_name_17 WHERE director = "jean-pierre jeunet"</s> | {
"answer": "SELECT english_title FROM table_name_17 WHERE director = \"jean-pierre jeunet\"",
"context": "CREATE TABLE table_name_17 (english_title VARCHAR, director VARCHAR)",
"question": "Name the title of jean-pierre jeunet"
} |
### QUESTION
What is the power output (kw) of builder zhuzhou, model hxd1d, with a total production of 2?
### CONTEXT
CREATE TABLE table_name_79 (power_output__kw_ VARCHAR, model VARCHAR, total_production VARCHAR, builder__family_ VARCHAR)
### ANSWER
SELECT power_output__kw_ FROM table_name_79 WHERE total_production = "2" AND builder__family_ = "zhuzhou" AND model = "hxd1d"</s> | {
"answer": "SELECT power_output__kw_ FROM table_name_79 WHERE total_production = \"2\" AND builder__family_ = \"zhuzhou\" AND model = \"hxd1d\"",
"context": "CREATE TABLE table_name_79 (power_output__kw_ VARCHAR, model VARCHAR, total_production VARCHAR, builder__family_ VARCHAR)",
"question": "What is the power output (kw) of builder zhuzhou, model hxd1d, with a total production of 2?"
} |
### QUESTION
What is the location/attendance of the game with a 3-1 record?
### CONTEXT
CREATE TABLE table_name_1 (location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_1 WHERE record = "3-1"</s> | {
"answer": "SELECT location_attendance FROM table_name_1 WHERE record = \"3-1\"",
"context": "CREATE TABLE table_name_1 (location_attendance VARCHAR, record VARCHAR)",
"question": "What is the location/attendance of the game with a 3-1 record?"
} |
### QUESTION
What was the lowest week at Ralph Wilson Stadium on October 7, 2001?
### CONTEXT
CREATE TABLE table_name_72 (week INTEGER, game_site VARCHAR, date VARCHAR)
### ANSWER
SELECT MIN(week) FROM table_name_72 WHERE game_site = "ralph wilson stadium" AND date = "october 7, 2001"</s> | {
"answer": "SELECT MIN(week) FROM table_name_72 WHERE game_site = \"ralph wilson stadium\" AND date = \"october 7, 2001\"",
"context": "CREATE TABLE table_name_72 (week INTEGER, game_site VARCHAR, date VARCHAR)",
"question": "What was the lowest week at Ralph Wilson Stadium on October 7, 2001?"
} |
### QUESTION
What is the total number of To Par, when Score is "70-75-76=221"?
### CONTEXT
CREATE TABLE table_name_16 (to_par VARCHAR, score VARCHAR)
### ANSWER
SELECT COUNT(to_par) FROM table_name_16 WHERE score = 70 - 75 - 76 = 221</s> | {
"answer": "SELECT COUNT(to_par) FROM table_name_16 WHERE score = 70 - 75 - 76 = 221",
"context": "CREATE TABLE table_name_16 (to_par VARCHAR, score VARCHAR)",
"question": "What is the total number of To Par, when Score is \"70-75-76=221\"?"
} |
### QUESTION
Which trainer had a time of 1:10.09 with a year less than 2009?
### CONTEXT
CREATE TABLE table_name_34 (trainer VARCHAR, year VARCHAR, time VARCHAR)
### ANSWER
SELECT trainer FROM table_name_34 WHERE year < 2009 AND time = "1:10.09"</s> | {
"answer": "SELECT trainer FROM table_name_34 WHERE year < 2009 AND time = \"1:10.09\"",
"context": "CREATE TABLE table_name_34 (trainer VARCHAR, year VARCHAR, time VARCHAR)",
"question": "Which trainer had a time of 1:10.09 with a year less than 2009?"
} |
### QUESTION
How much Overall has a Position of ot, and a Round larger than 5?
### CONTEXT
CREATE TABLE table_name_76 (overall VARCHAR, position VARCHAR, round VARCHAR)
### ANSWER
SELECT COUNT(overall) FROM table_name_76 WHERE position = "ot" AND round > 5</s> | {
"answer": "SELECT COUNT(overall) FROM table_name_76 WHERE position = \"ot\" AND round > 5",
"context": "CREATE TABLE table_name_76 (overall VARCHAR, position VARCHAR, round VARCHAR)",
"question": "How much Overall has a Position of ot, and a Round larger than 5?"
} |
### QUESTION
what date has the class of non-championship f2 as well as a driver name josé froilán gonzález that has a position larger than 2?
### CONTEXT
CREATE TABLE table_name_27 (date VARCHAR, position VARCHAR, class VARCHAR, driver VARCHAR)
### ANSWER
SELECT date FROM table_name_27 WHERE class = "non-championship f2" AND driver = "josé froilán gonzález" AND position > 2</s> | {
"answer": "SELECT date FROM table_name_27 WHERE class = \"non-championship f2\" AND driver = \"josé froilán gonzález\" AND position > 2",
"context": "CREATE TABLE table_name_27 (date VARCHAR, position VARCHAR, class VARCHAR, driver VARCHAR)",
"question": "what date has the class of non-championship f2 as well as a driver name josé froilán gonzález that has a position larger than 2?"
} |
### QUESTION
what team has a drive name emmanuel de graffenried and a position larger than 1 as well as the date of 9/1953?
### CONTEXT
CREATE TABLE table_name_46 (team VARCHAR, driver VARCHAR, position VARCHAR, date VARCHAR)
### ANSWER
SELECT team FROM table_name_46 WHERE position > 1 AND date = "9/1953" AND driver = "emmanuel de graffenried"</s> | {
"answer": "SELECT team FROM table_name_46 WHERE position > 1 AND date = \"9/1953\" AND driver = \"emmanuel de graffenried\"",
"context": "CREATE TABLE table_name_46 (team VARCHAR, driver VARCHAR, position VARCHAR, date VARCHAR)",
"question": "what team has a drive name emmanuel de graffenried and a position larger than 1 as well as the date of 9/1953?"
} |
### QUESTION
It has a FA Cup Goals smaller than 4, and a FA Cup Apps larger than 7, what is the total number of total apps?
### CONTEXT
CREATE TABLE table_name_6 (total_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
### ANSWER
SELECT COUNT(total_apps) FROM table_name_6 WHERE fa_cup_goals < 4 AND fa_cup_apps > 7</s> | {
"answer": "SELECT COUNT(total_apps) FROM table_name_6 WHERE fa_cup_goals < 4 AND fa_cup_apps > 7",
"context": "CREATE TABLE table_name_6 (total_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)",
"question": "It has a FA Cup Goals smaller than 4, and a FA Cup Apps larger than 7, what is the total number of total apps?"
} |
### QUESTION
Which opponent has unknown attendance, and lost 2-0?
### CONTEXT
CREATE TABLE table_name_43 (opponent VARCHAR, attendance VARCHAR, result VARCHAR)
### ANSWER
SELECT opponent FROM table_name_43 WHERE attendance = "unknown" AND result = "lost 2-0"</s> | {
"answer": "SELECT opponent FROM table_name_43 WHERE attendance = \"unknown\" AND result = \"lost 2-0\"",
"context": "CREATE TABLE table_name_43 (opponent VARCHAR, attendance VARCHAR, result VARCHAR)",
"question": "Which opponent has unknown attendance, and lost 2-0?"
} |
### QUESTION
What round did he win rof 29: aftershock in?
### CONTEXT
CREATE TABLE table_name_3 (round VARCHAR, res VARCHAR, event VARCHAR)
### ANSWER
SELECT round FROM table_name_3 WHERE res = "win" AND event = "rof 29: aftershock"</s> | {
"answer": "SELECT round FROM table_name_3 WHERE res = \"win\" AND event = \"rof 29: aftershock\"",
"context": "CREATE TABLE table_name_3 (round VARCHAR, res VARCHAR, event VARCHAR)",
"question": "What round did he win rof 29: aftershock in?"
} |
### QUESTION
Tell me the tv time for attendance of 60,894
### CONTEXT
CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR)
### ANSWER
SELECT tv_time FROM table_name_86 WHERE attendance = "60,894"</s> | {
"answer": "SELECT tv_time FROM table_name_86 WHERE attendance = \"60,894\"",
"context": "CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR)",
"question": "Tell me the tv time for attendance of 60,894"
} |
### QUESTION
What was the result during the week # of top 8?
### CONTEXT
CREATE TABLE table_name_26 (result VARCHAR, week__number VARCHAR)
### ANSWER
SELECT result FROM table_name_26 WHERE week__number = "top 8"</s> | {
"answer": "SELECT result FROM table_name_26 WHERE week__number = \"top 8\"",
"context": "CREATE TABLE table_name_26 (result VARCHAR, week__number VARCHAR)",
"question": "What was the result during the week # of top 8?"
} |
### QUESTION
What was the theme during the week # of top 24 (12 men)
### CONTEXT
CREATE TABLE table_name_73 (theme VARCHAR, week__number VARCHAR)
### ANSWER
SELECT theme FROM table_name_73 WHERE week__number = "top 24 (12 men)"</s> | {
"answer": "SELECT theme FROM table_name_73 WHERE week__number = \"top 24 (12 men)\"",
"context": "CREATE TABLE table_name_73 (theme VARCHAR, week__number VARCHAR)",
"question": "What was the theme during the week # of top 24 (12 men)"
} |
### QUESTION
What was the result after the week # top 11?
### CONTEXT
CREATE TABLE table_name_84 (result VARCHAR, week__number VARCHAR)
### ANSWER
SELECT result FROM table_name_84 WHERE week__number = "top 11"</s> | {
"answer": "SELECT result FROM table_name_84 WHERE week__number = \"top 11\"",
"context": "CREATE TABLE table_name_84 (result VARCHAR, week__number VARCHAR)",
"question": "What was the result after the week # top 11?"
} |
### QUESTION
Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D?
### CONTEXT
CREATE TABLE table_name_45 (winning_applicant VARCHAR, block VARCHAR, ensemble_name VARCHAR)
### ANSWER
SELECT winning_applicant FROM table_name_45 WHERE block = "10d" AND ensemble_name = "muxco lincolnshire"</s> | {
"answer": "SELECT winning_applicant FROM table_name_45 WHERE block = \"10d\" AND ensemble_name = \"muxco lincolnshire\"",
"context": "CREATE TABLE table_name_45 (winning_applicant VARCHAR, block VARCHAR, ensemble_name VARCHAR)",
"question": "Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D?"
} |
### QUESTION
Who is the Opponent on January 16?
### CONTEXT
CREATE TABLE table_name_45 (opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent FROM table_name_45 WHERE date = "january 16"</s> | {
"answer": "SELECT opponent FROM table_name_45 WHERE date = \"january 16\"",
"context": "CREATE TABLE table_name_45 (opponent VARCHAR, date VARCHAR)",
"question": "Who is the Opponent on January 16?"
} |
### QUESTION
What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?
### CONTEXT
CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR)
### ANSWER
SELECT SUM(lane) FROM table_name_24 WHERE nationality = "sweden" AND split__50m_ < 26.25</s> | {
"answer": "SELECT SUM(lane) FROM table_name_24 WHERE nationality = \"sweden\" AND split__50m_ < 26.25",
"context": "CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR)",
"question": "What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?"
} |
### QUESTION
What player has a no pick position in 1976?
### CONTEXT
CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR, year VARCHAR)
### ANSWER
SELECT player FROM table_name_33 WHERE position = "no pick" AND year = 1976</s> | {
"answer": "SELECT player FROM table_name_33 WHERE position = \"no pick\" AND year = 1976",
"context": "CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR, year VARCHAR)",
"question": "What player has a no pick position in 1976?"
} |
### QUESTION
What is the category Anuya Bhagvath was nominated for at vijay award?
### CONTEXT
CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR)
### ANSWER
SELECT ceremony FROM table_name_39 WHERE award = "vijay award" AND outcome = "nominated" AND name = "anuya bhagvath"</s> | {
"answer": "SELECT ceremony FROM table_name_39 WHERE award = \"vijay award\" AND outcome = \"nominated\" AND name = \"anuya bhagvath\"",
"context": "CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR)",
"question": "What is the category Anuya Bhagvath was nominated for at vijay award?"
} |
### QUESTION
Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?
### CONTEXT
CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR)
### ANSWER
SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5</s> | {
"answer": "SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = \"smyslov; kasparov\" AND position = 5",
"context": "CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR)",
"question": "Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?"
} |
### QUESTION
Which team was at Corio Oval on 4 June 1927?
### CONTEXT
CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_77 WHERE date = "4 june 1927" AND venue = "corio oval"</s> | {
"answer": "SELECT away_team FROM table_name_77 WHERE date = \"4 june 1927\" AND venue = \"corio oval\"",
"context": "CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR)",
"question": "Which team was at Corio Oval on 4 June 1927?"
} |
Subsets and Splits