text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
How many different numbers of floors are there for the Chongqing Poly Tower?
### CONTEXT
CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR)
### ANSWER
SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = "Chongqing Poly Tower"</s> | {
"answer": "SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = \"Chongqing Poly Tower\"",
"context": "CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR)",
"question": "How many different numbers of floors are there for the Chongqing Poly Tower?"
} |
### QUESTION
What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?
### CONTEXT
CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)
### ANSWER
SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected"</s> | {
"answer": "SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\"",
"context": "CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)",
"question": "What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?"
} |
### QUESTION
What country is new orleans in?
### CONTEXT
CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR)
### ANSWER
SELECT country FROM table_28005160_2 WHERE city = "New Orleans"</s> | {
"answer": "SELECT country FROM table_28005160_2 WHERE city = \"New Orleans\"",
"context": "CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR)",
"question": "What country is new orleans in?"
} |
### QUESTION
What country are the new orleans shell shockers from?
### CONTEXT
CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR)
### ANSWER
SELECT country FROM table_28005160_2 WHERE sponsored_name = "New Orleans Shell Shockers"</s> | {
"answer": "SELECT country FROM table_28005160_2 WHERE sponsored_name = \"New Orleans Shell Shockers\"",
"context": "CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR)",
"question": "What country are the new orleans shell shockers from?"
} |
### QUESTION
What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?
### CONTEXT
CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4</s> | {
"answer": "SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4",
"context": "CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR)",
"question": "What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?"
} |
### QUESTION
Who was the composer of ain shams?
### CONTEXT
CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR)
### ANSWER
SELECT composer FROM table_28005100_1 WHERE title = "Ain Shams"</s> | {
"answer": "SELECT composer FROM table_28005100_1 WHERE title = \"Ain Shams\"",
"context": "CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR)",
"question": "Who was the composer of ain shams?"
} |
### QUESTION
What is the epa rated combined fuel economy for the Nissan Leaf?
### CONTEXT
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR)
### ANSWER
SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = "Nissan Leaf"</s> | {
"answer": "SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = \"Nissan Leaf\"",
"context": "CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR)",
"question": "What is the epa rated combined fuel economy for the Nissan Leaf?"
} |
### QUESTION
How many sound engineers were there for law hakon '3er leek?
### CONTEXT
CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR)
### ANSWER
SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = "Law Hakon '3er Leek"</s> | {
"answer": "SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = \"Law Hakon '3er Leek\"",
"context": "CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR)",
"question": "How many sound engineers were there for law hakon '3er leek?"
} |
### QUESTION
Which number was the lyricist ahmed metwally?
### CONTEXT
CREATE TABLE table_28005100_1 (no VARCHAR, lyricist VARCHAR)
### ANSWER
SELECT no FROM table_28005100_1 WHERE lyricist = "Ahmed Metwally"</s> | {
"answer": "SELECT no FROM table_28005100_1 WHERE lyricist = \"Ahmed Metwally\"",
"context": "CREATE TABLE table_28005100_1 (no VARCHAR, lyricist VARCHAR)",
"question": "Which number was the lyricist ahmed metwally?"
} |
### QUESTION
What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?
### CONTEXT
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)
### ANSWER
SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = "All-electric" AND dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)"</s> | {
"answer": "SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = \"All-electric\" AND dirty_electric_grid_rocky_mountains__denver_ = \"330 g/mi (205 g/km)\"",
"context": "CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)",
"question": "What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?"
} |
### QUESTION
What is every value for approximate duration when event details is women's foil?
### CONTEXT
CREATE TABLE table_28003469_1 (approx_duration VARCHAR, event_details VARCHAR)
### ANSWER
SELECT approx_duration FROM table_28003469_1 WHERE event_details = "Women's Foil"</s> | {
"answer": "SELECT approx_duration FROM table_28003469_1 WHERE event_details = \"Women's Foil\"",
"context": "CREATE TABLE table_28003469_1 (approx_duration VARCHAR, event_details VARCHAR)",
"question": "What is every value for approximate duration when event details is women's foil?"
} |
### QUESTION
Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera?
### CONTEXT
CREATE TABLE table_name_60 (lane INTEGER, athlete VARCHAR, react VARCHAR, rank VARCHAR, time VARCHAR)
### ANSWER
SELECT MAX(lane) FROM table_name_60 WHERE rank > 3 AND time > 45.63 AND react < 0.28800000000000003 AND athlete = "geiner mosquera"</s> | {
"answer": "SELECT MAX(lane) FROM table_name_60 WHERE rank > 3 AND time > 45.63 AND react < 0.28800000000000003 AND athlete = \"geiner mosquera\"",
"context": "CREATE TABLE table_name_60 (lane INTEGER, athlete VARCHAR, react VARCHAR, rank VARCHAR, time VARCHAR)",
"question": "Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera?"
} |
### QUESTION
How many viewers are the when the draw is 3?
### CONTEXT
CREATE TABLE table_27994983_8 (viewers INTEGER, draw VARCHAR)
### ANSWER
SELECT MAX(viewers) FROM table_27994983_8 WHERE draw = 3</s> | {
"answer": "SELECT MAX(viewers) FROM table_27994983_8 WHERE draw = 3",
"context": "CREATE TABLE table_27994983_8 (viewers INTEGER, draw VARCHAR)",
"question": "How many viewers are the when the draw is 3?"
} |
### QUESTION
What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score?
### CONTEXT
CREATE TABLE table_name_95 (year INTEGER, competition VARCHAR, waterford_score VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_95 WHERE competition = "all-ireland hurling final" AND waterford_score = "6-08 (24)"</s> | {
"answer": "SELECT MIN(year) FROM table_name_95 WHERE competition = \"all-ireland hurling final\" AND waterford_score = \"6-08 (24)\"",
"context": "CREATE TABLE table_name_95 (year INTEGER, competition VARCHAR, waterford_score VARCHAR)",
"question": "What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score?"
} |
### QUESTION
What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition?
### CONTEXT
CREATE TABLE table_name_7 (waterford_score VARCHAR, year VARCHAR, competition VARCHAR)
### ANSWER
SELECT waterford_score FROM table_name_7 WHERE year < 1963 AND competition = "all-ireland hurling final replay"</s> | {
"answer": "SELECT waterford_score FROM table_name_7 WHERE year < 1963 AND competition = \"all-ireland hurling final replay\"",
"context": "CREATE TABLE table_name_7 (waterford_score VARCHAR, year VARCHAR, competition VARCHAR)",
"question": "What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition?"
} |
### QUESTION
How many millions of U.S. viewers watched the episode with the production code of 6AKY07?
### CONTEXT
CREATE TABLE table_28027307_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)
### ANSWER
SELECT us_viewers__millions_ FROM table_28027307_1 WHERE production_code = "6AKY07"</s> | {
"answer": "SELECT us_viewers__millions_ FROM table_28027307_1 WHERE production_code = \"6AKY07\"",
"context": "CREATE TABLE table_28027307_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)",
"question": "How many millions of U.S. viewers watched the episode with the production code of 6AKY07?"
} |
### QUESTION
What is the sum of the prominence in m of slovakia?
### CONTEXT
CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR)
### ANSWER
SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = "slovakia"</s> | {
"answer": "SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = \"slovakia\"",
"context": "CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR)",
"question": "What is the sum of the prominence in m of slovakia?"
} |
### QUESTION
On week 11 when Dixon scored an 8, what was tonioli's score?
### CONTEXT
CREATE TABLE table_2803106_1 (tonioli VARCHAR, week__number VARCHAR, dixon VARCHAR)
### ANSWER
SELECT tonioli FROM table_2803106_1 WHERE week__number = 11 AND dixon = "8"</s> | {
"answer": "SELECT tonioli FROM table_2803106_1 WHERE week__number = 11 AND dixon = \"8\"",
"context": "CREATE TABLE table_2803106_1 (tonioli VARCHAR, week__number VARCHAR, dixon VARCHAR)",
"question": "On week 11 when Dixon scored an 8, what was tonioli's score?"
} |
### QUESTION
How many winners from previous round were there in the semi finals?
### CONTEXT
CREATE TABLE table_28039032_1 (winners_from_previous_round VARCHAR, round VARCHAR)
### ANSWER
SELECT winners_from_previous_round FROM table_28039032_1 WHERE round = "Semi finals"</s> | {
"answer": "SELECT winners_from_previous_round FROM table_28039032_1 WHERE round = \"Semi finals\"",
"context": "CREATE TABLE table_28039032_1 (winners_from_previous_round VARCHAR, round VARCHAR)",
"question": "How many winners from previous round were there in the semi finals?"
} |
### QUESTION
What was the rank when then time was 7:52.53?
### CONTEXT
CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_10 WHERE time = "7:52.53"</s> | {
"answer": "SELECT MIN(rank) FROM table_name_10 WHERE time = \"7:52.53\"",
"context": "CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR)",
"question": "What was the rank when then time was 7:52.53?"
} |
### QUESTION
Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811?
### CONTEXT
CREATE TABLE table_name_91 (water__sqmi_ INTEGER, pop__2010_ VARCHAR, longitude VARCHAR)
### ANSWER
SELECT MAX(water__sqmi_) FROM table_name_91 WHERE pop__2010_ = 359 AND longitude < -97.176811</s> | {
"answer": "SELECT MAX(water__sqmi_) FROM table_name_91 WHERE pop__2010_ = 359 AND longitude < -97.176811",
"context": "CREATE TABLE table_name_91 (water__sqmi_ INTEGER, pop__2010_ VARCHAR, longitude VARCHAR)",
"question": "Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811?"
} |
### QUESTION
How many production codes are there for the episode that had 4.36 million u.s. viewers?
### CONTEXT
CREATE TABLE table_28037619_2 (production_code VARCHAR, us_viewers__million_ VARCHAR)
### ANSWER
SELECT COUNT(production_code) FROM table_28037619_2 WHERE us_viewers__million_ = "4.36"</s> | {
"answer": "SELECT COUNT(production_code) FROM table_28037619_2 WHERE us_viewers__million_ = \"4.36\"",
"context": "CREATE TABLE table_28037619_2 (production_code VARCHAR, us_viewers__million_ VARCHAR)",
"question": "How many production codes are there for the episode that had 4.36 million u.s. viewers?"
} |
### QUESTION
When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?
### CONTEXT
CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)
### ANSWER
SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = "Madison Square Garden ( New York City, New York )"</s> | {
"answer": "SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = \"Madison Square Garden ( New York City, New York )\"",
"context": "CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)",
"question": "When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?"
} |
### QUESTION
Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979?
### CONTEXT
CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR)
### ANSWER
SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979</s> | {
"answer": "SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979",
"context": "CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR)",
"question": "Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979?"
} |
### QUESTION
When Cincinnati is the tournament winner how many regular season winners are there?
### CONTEXT
CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)
### ANSWER
SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = "Cincinnati"</s> | {
"answer": "SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = \"Cincinnati\"",
"context": "CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)",
"question": "When Cincinnati is the tournament winner how many regular season winners are there?"
} |
### QUESTION
When troy is the regular season winner what is the conference tournament?
### CONTEXT
CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)
### ANSWER
SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = "Troy"</s> | {
"answer": "SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = \"Troy\"",
"context": "CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)",
"question": "When troy is the regular season winner what is the conference tournament?"
} |
### QUESTION
When were the successor/s seated for Ohio 10th?
### CONTEXT
CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, district VARCHAR)
### ANSWER
SELECT date_successor_seated FROM table_2417345_4 WHERE district = "Ohio 10th"</s> | {
"answer": "SELECT date_successor_seated FROM table_2417345_4 WHERE district = \"Ohio 10th\"",
"context": "CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, district VARCHAR)",
"question": "When were the successor/s seated for Ohio 10th?"
} |
### QUESTION
Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?
### CONTEXT
CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR)
### ANSWER
SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = "none (new school)" AND mascot = "rebels"</s> | {
"answer": "SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = \"none (new school)\" AND mascot = \"rebels\"",
"context": "CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR)",
"question": "Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?"
} |
### QUESTION
How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del?
### CONTEXT
CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR)
### ANSWER
SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = "a" AND school = "jac-cen-del"</s> | {
"answer": "SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = \"a\" AND school = \"jac-cen-del\"",
"context": "CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR)",
"question": "How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del?"
} |
### QUESTION
In what Week resulting in the bottom 3 was Endre Jansen Partner?
### CONTEXT
CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)
### ANSWER
SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen"</s> | {
"answer": "SELECT MAX(week) FROM table_name_97 WHERE result = \"bottom 3\" AND partner = \"endre jansen\"",
"context": "CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)",
"question": "In what Week resulting in the bottom 3 was Endre Jansen Partner?"
} |
### QUESTION
What position has 7 as the round, with a pick # less than 214?
### CONTEXT
CREATE TABLE table_name_5 (position VARCHAR, round VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT position FROM table_name_5 WHERE round = 7 AND pick__number < 214</s> | {
"answer": "SELECT position FROM table_name_5 WHERE round = 7 AND pick__number < 214",
"context": "CREATE TABLE table_name_5 (position VARCHAR, round VARCHAR, pick__number VARCHAR)",
"question": "What position has 7 as the round, with a pick # less than 214?"
} |
### QUESTION
Who were the authors of the episode first broadcast on August 10, 2012?
### CONTEXT
CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012"</s> | {
"answer": "SELECT written_by FROM table_28081876_6 WHERE original_air_date = \"August 10, 2012\"",
"context": "CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR)",
"question": "Who were the authors of the episode first broadcast on August 10, 2012?"
} |
### QUESTION
What was the intermediate sprint classification for the race whose winner was Daniel Martin?
### CONTEXT
CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR)
### ANSWER
SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = "Daniel Martin"</s> | {
"answer": "SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = \"Daniel Martin\"",
"context": "CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR)",
"question": "What was the intermediate sprint classification for the race whose winner was Daniel Martin?"
} |
### QUESTION
Which teams classification winners had a general classification winner of Allan Davis?
### CONTEXT
CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR)
### ANSWER
SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis"</s> | {
"answer": "SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = \"Allan Davis\"",
"context": "CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR)",
"question": "Which teams classification winners had a general classification winner of Allan Davis?"
} |
### QUESTION
While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast?
### CONTEXT
CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)
### ANSWER
SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Nicci Claspell"</s> | {
"answer": "SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = \"Nicci Claspell\"",
"context": "CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)",
"question": "While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast?"
} |
### QUESTION
Who won the points classification when the teams classification winner was Lampre-Farnese?
### CONTEXT
CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)
### ANSWER
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese"</s> | {
"answer": "SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = \"Lampre-Farnese\"",
"context": "CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)",
"question": "Who won the points classification when the teams classification winner was Lampre-Farnese?"
} |
### QUESTION
Which country is the nnamdi azikiwe international airport in?
### CONTEXT
CREATE TABLE table_name_73 (country VARCHAR, airport VARCHAR)
### ANSWER
SELECT country FROM table_name_73 WHERE airport = "nnamdi azikiwe international airport"</s> | {
"answer": "SELECT country FROM table_name_73 WHERE airport = \"nnamdi azikiwe international airport\"",
"context": "CREATE TABLE table_name_73 (country VARCHAR, airport VARCHAR)",
"question": "Which country is the nnamdi azikiwe international airport in?"
} |
### QUESTION
What is the average lane for Kenya with react larger than 0.212?
### CONTEXT
CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR)
### ANSWER
SELECT AVG(lane) FROM table_name_79 WHERE nationality = "kenya" AND react > 0.212</s> | {
"answer": "SELECT AVG(lane) FROM table_name_79 WHERE nationality = \"kenya\" AND react > 0.212",
"context": "CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR)",
"question": "What is the average lane for Kenya with react larger than 0.212?"
} |
### QUESTION
Who wrote the album recorded at funhouse studios with a time of 3:27?
### CONTEXT
CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)
### ANSWER
SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27"</s> | {
"answer": "SELECT writer_s_ FROM table_name_64 WHERE recorded_at = \"funhouse studios\" AND time = \"3:27\"",
"context": "CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)",
"question": "Who wrote the album recorded at funhouse studios with a time of 3:27?"
} |
### QUESTION
Who is listed under womens singles when year location is 1998 doha?
### CONTEXT
CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR)
### ANSWER
SELECT womens_singles FROM table_28138035_27 WHERE year_location = "1998 Doha"</s> | {
"answer": "SELECT womens_singles FROM table_28138035_27 WHERE year_location = \"1998 Doha\"",
"context": "CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR)",
"question": "Who is listed under womens singles when year location is 1998 doha?"
} |
### QUESTION
How many year locations are there for the womens doubles in jing junhong li jiawei?
### CONTEXT
CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)
### ANSWER
SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei"</s> | {
"answer": "SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = \"Jing Junhong Li Jiawei\"",
"context": "CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)",
"question": "How many year locations are there for the womens doubles in jing junhong li jiawei?"
} |
### QUESTION
How many players are there for mens singles when chen qi ma lin played mens doubles?
### CONTEXT
CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = "Chen Qi Ma Lin"</s> | {
"answer": "SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = \"Chen Qi Ma Lin\"",
"context": "CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR)",
"question": "How many players are there for mens singles when chen qi ma lin played mens doubles?"
} |
### QUESTION
How many years did lin gaoyuan wu jiaji play mens doubles?
### CONTEXT
CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = "Lin Gaoyuan Wu Jiaji"</s> | {
"answer": "SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = \"Lin Gaoyuan Wu Jiaji\"",
"context": "CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR)",
"question": "How many years did lin gaoyuan wu jiaji play mens doubles?"
} |
### QUESTION
Name the most goals for 1972 – 1975, 1976 – 1982
### CONTEXT
CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR)
### ANSWER
SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = "1972 – 1975, 1976 – 1982"</s> | {
"answer": "SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = \"1972 – 1975, 1976 – 1982\"",
"context": "CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR)",
"question": "Name the most goals for 1972 – 1975, 1976 – 1982"
} |
### QUESTION
What's the exposure fusion of Panoramaplus x4?
### CONTEXT
CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)
### ANSWER
SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4"</s> | {
"answer": "SELECT exposure_fusion FROM table_name_38 WHERE name = \"panoramaplus x4\"",
"context": "CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)",
"question": "What's the exposure fusion of Panoramaplus x4?"
} |
### QUESTION
when was the next coach appointed after niger tornadoes fired their coach?
### CONTEXT
CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)
### ANSWER
SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes"</s> | {
"answer": "SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = \"fired\" AND team = \"Niger Tornadoes\"",
"context": "CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)",
"question": "when was the next coach appointed after niger tornadoes fired their coach?"
} |
### QUESTION
Name the total number of language of films for méga-plex taschereau imax
### CONTEXT
CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR)
### ANSWER
SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX"</s> | {
"answer": "SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = \"Méga-Plex Taschereau IMAX\"",
"context": "CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR)",
"question": "Name the total number of language of films for méga-plex taschereau imax"
} |
### QUESTION
how many managers left sunshine stars?
### CONTEXT
CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars"</s> | {
"answer": "SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = \"Sunshine Stars\"",
"context": "CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)",
"question": "how many managers left sunshine stars?"
} |
### QUESTION
Name the location for democratic méga-plex taschereau imax
### CONTEXT
CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR)
### ANSWER
SELECT location FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX"</s> | {
"answer": "SELECT location FROM table_2461720_1 WHERE theatre_name = \"Méga-Plex Taschereau IMAX\"",
"context": "CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR)",
"question": "Name the location for democratic méga-plex taschereau imax"
} |
### QUESTION
Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville?
### CONTEXT
CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR)
### ANSWER
SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = "aaa" AND location = "nashville"</s> | {
"answer": "SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = \"aaa\" AND location = \"nashville\"",
"context": "CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR)",
"question": "Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville?"
} |
### QUESTION
How many mystic arte have hisui (jadeite) hearts 1 as the character?
### CONTEXT
CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)
### ANSWER
SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1"</s> | {
"answer": "SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = \"Hisui (Jadeite) Hearts 1\"",
"context": "CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)",
"question": "How many mystic arte have hisui (jadeite) hearts 1 as the character?"
} |
### QUESTION
What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll?
### CONTEXT
CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT title FROM table_2468961_3 WHERE written_by = "Bob Rosenfarb" AND directed_by = "Richard Correll"</s> | {
"answer": "SELECT title FROM table_2468961_3 WHERE written_by = \"Bob Rosenfarb\" AND directed_by = \"Richard Correll\"",
"context": "CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)",
"question": "What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll?"
} |
### QUESTION
What is the name of the performance zhu xiaoming performed?
### CONTEXT
CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)
### ANSWER
SELECT act FROM table_28180840_15 WHERE name_name_of_act = "Zhu Xiaoming"</s> | {
"answer": "SELECT act FROM table_28180840_15 WHERE name_name_of_act = \"Zhu Xiaoming\"",
"context": "CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)",
"question": "What is the name of the performance zhu xiaoming performed?"
} |
### QUESTION
Who was the challenge winner in the episode that originally aired on January 28, 2009?
### CONTEXT
CREATE TABLE table_24798489_1 (challenge_winner VARCHAR, original_airdate VARCHAR)
### ANSWER
SELECT challenge_winner FROM table_24798489_1 WHERE original_airdate = "January 28, 2009"</s> | {
"answer": "SELECT challenge_winner FROM table_24798489_1 WHERE original_airdate = \"January 28, 2009\"",
"context": "CREATE TABLE table_24798489_1 (challenge_winner VARCHAR, original_airdate VARCHAR)",
"question": "Who was the challenge winner in the episode that originally aired on January 28, 2009?"
} |
### QUESTION
What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?
### CONTEXT
CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR)
### ANSWER
SELECT MIN(week) FROM table_name_70 WHERE date = "september 19, 1965" AND attendance < 46 OFFSET 941</s> | {
"answer": "SELECT MIN(week) FROM table_name_70 WHERE date = \"september 19, 1965\" AND attendance < 46 OFFSET 941",
"context": "CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR)",
"question": "What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?"
} |
### QUESTION
One 6 November 2007 what was the manner of departure for the coach release in football league one?
### CONTEXT
CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
### ANSWER
SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = "6 November 2007"</s> | {
"answer": "SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = \"6 November 2007\"",
"context": "CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)",
"question": "One 6 November 2007 what was the manner of departure for the coach release in football league one?"
} |
### QUESTION
What was the margin of victory when runner-up was K. J. Choi?
### CONTEXT
CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = "K. J. Choi"</s> | {
"answer": "SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = \"K. J. Choi\"",
"context": "CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)",
"question": "What was the margin of victory when runner-up was K. J. Choi?"
} |
### QUESTION
What is the series number for the episode directed by jay sandrich that aired October 23, 1986?
### CONTEXT
CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = "Jay Sandrich" AND original_air_date = "October 23, 1986"</s> | {
"answer": "SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = \"Jay Sandrich\" AND original_air_date = \"October 23, 1986\"",
"context": "CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR)",
"question": "What is the series number for the episode directed by jay sandrich that aired October 23, 1986?"
} |
### QUESTION
What are the title(s) of episodes directed by david solomon and written by marti noxon?
### CONTEXT
CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
### ANSWER
SELECT title FROM table_28195971_1 WHERE directed_by = "David Solomon" AND written_by = "Marti Noxon"</s> | {
"answer": "SELECT title FROM table_28195971_1 WHERE directed_by = \"David Solomon\" AND written_by = \"Marti Noxon\"",
"context": "CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)",
"question": "What are the title(s) of episodes directed by david solomon and written by marti noxon?"
} |
### QUESTION
Where is the location of Game 4?
### CONTEXT
CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_26 WHERE game = "4"</s> | {
"answer": "SELECT location_attendance FROM table_name_26 WHERE game = \"4\"",
"context": "CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)",
"question": "Where is the location of Game 4?"
} |
### QUESTION
What week had kickoff time at 6:00 p.m.?
### CONTEXT
CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR)
### ANSWER
SELECT MIN(week) FROM table_24786958_2 WHERE kickoff = "6:00 p.m."</s> | {
"answer": "SELECT MIN(week) FROM table_24786958_2 WHERE kickoff = \"6:00 p.m.\"",
"context": "CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR)",
"question": "What week had kickoff time at 6:00 p.m.?"
} |
### QUESTION
How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?
### CONTEXT
CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR)
### ANSWER
SELECT SUM(std_rank) FROM table_name_97 WHERE name = "311 south wacker drive" AND year > 1990</s> | {
"answer": "SELECT SUM(std_rank) FROM table_name_97 WHERE name = \"311 south wacker drive\" AND year > 1990",
"context": "CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR)",
"question": "How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?"
} |
### QUESTION
What year was the expansion in the city of San Juan?
### CONTEXT
CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_31 WHERE city = \"san juan\"",
"context": "CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR)",
"question": "What year was the expansion in the city of San Juan?"
} |
### QUESTION
What numbered episode was directed by greg colton and written by patrick meighan?
### CONTEXT
CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)
### ANSWER
SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = "Greg Colton" AND written_by = "Patrick Meighan"</s> | {
"answer": "SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = \"Greg Colton\" AND written_by = \"Patrick Meighan\"",
"context": "CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)",
"question": "What numbered episode was directed by greg colton and written by patrick meighan?"
} |
### QUESTION
For the game on 13 December 1975 with Halifax Town as the away team what was the score?
### CONTEXT
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT score FROM table_name_4 WHERE date = "13 december 1975" AND away_team = "halifax town"</s> | {
"answer": "SELECT score FROM table_name_4 WHERE date = \"13 december 1975\" AND away_team = \"halifax town\"",
"context": "CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR)",
"question": "For the game on 13 December 1975 with Halifax Town as the away team what was the score?"
} |
### QUESTION
Who is everyone on the men's doubles when men's singles is Ma Wenge?
### CONTEXT
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
### ANSWER
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"</s> | {
"answer": "SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = \"Ma Wenge\"",
"context": "CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)",
"question": "Who is everyone on the men's doubles when men's singles is Ma Wenge?"
} |
### QUESTION
Who are all men's doubles when men's singles is Jean-Michel Saive?
### CONTEXT
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
### ANSWER
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive"</s> | {
"answer": "SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = \"Jean-Michel Saive\"",
"context": "CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)",
"question": "Who are all men's doubles when men's singles is Jean-Michel Saive?"
} |
### QUESTION
What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS?
### CONTEXT
CREATE TABLE table_name_79 (romaji_title VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)
### ANSWER
SELECT romaji_title FROM table_name_79 WHERE tv_station = "tbs" AND japanese_title = "around40〜注文の多いオンナたち〜"</s> | {
"answer": "SELECT romaji_title FROM table_name_79 WHERE tv_station = \"tbs\" AND japanese_title = \"around40〜注文の多いオンナたち〜\"",
"context": "CREATE TABLE table_name_79 (romaji_title VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)",
"question": "What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS?"
} |
### QUESTION
What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%?
### CONTEXT
CREATE TABLE table_name_70 (japanese_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR)
### ANSWER
SELECT japanese_title FROM table_name_70 WHERE episodes > 10 AND tv_station = "tbs" AND average_ratings = "14.8%"</s> | {
"answer": "SELECT japanese_title FROM table_name_70 WHERE episodes > 10 AND tv_station = \"tbs\" AND average_ratings = \"14.8%\"",
"context": "CREATE TABLE table_name_70 (japanese_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR)",
"question": "What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%?"
} |
### QUESTION
Which School has a Year Joined larger than 1926, and a Mascot of vikings?
### CONTEXT
CREATE TABLE table_name_86 (school VARCHAR, year_joined VARCHAR, mascot VARCHAR)
### ANSWER
SELECT school FROM table_name_86 WHERE year_joined > 1926 AND mascot = "vikings"</s> | {
"answer": "SELECT school FROM table_name_86 WHERE year_joined > 1926 AND mascot = \"vikings\"",
"context": "CREATE TABLE table_name_86 (school VARCHAR, year_joined VARCHAR, mascot VARCHAR)",
"question": "Which School has a Year Joined larger than 1926, and a Mascot of vikings?"
} |
### QUESTION
Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic?
### CONTEXT
CREATE TABLE table_name_13 (_number___county VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)
### ANSWER
SELECT _number___county FROM table_name_13 WHERE year_joined > 1926 AND previous_conference = "olympic"</s> | {
"answer": "SELECT _number___county FROM table_name_13 WHERE year_joined > 1926 AND previous_conference = \"olympic\"",
"context": "CREATE TABLE table_name_13 (_number___county VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)",
"question": "Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic?"
} |
### QUESTION
How many seasons are there with Formula Holden?
### CONTEXT
CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)
### ANSWER
SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden"</s> | {
"answer": "SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = \"Formula Holden\"",
"context": "CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)",
"question": "How many seasons are there with Formula Holden?"
} |
### QUESTION
What is the Score of the 1996 Asian Cup Qualification on June 29, 1996?
### CONTEXT
CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_24 WHERE competition = "1996 asian cup qualification" AND date = "june 29, 1996"</s> | {
"answer": "SELECT score FROM table_name_24 WHERE competition = \"1996 asian cup qualification\" AND date = \"june 29, 1996\"",
"context": "CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR)",
"question": "What is the Score of the 1996 Asian Cup Qualification on June 29, 1996?"
} |
### QUESTION
What's the most amount of point finishes for v8supercar?
### CONTEXT
CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR)
### ANSWER
SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = "V8Supercar"</s> | {
"answer": "SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = \"V8Supercar\"",
"context": "CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR)",
"question": "What's the most amount of point finishes for v8supercar?"
} |
### QUESTION
Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa?
### CONTEXT
CREATE TABLE table_name_4 (enrollment VARCHAR, ihsaa_class VARCHAR, primary_conference VARCHAR, county VARCHAR)
### ANSWER
SELECT enrollment FROM table_name_4 WHERE primary_conference = "mid-hoosier" AND county = "16 decatur" AND ihsaa_class = "aa"</s> | {
"answer": "SELECT enrollment FROM table_name_4 WHERE primary_conference = \"mid-hoosier\" AND county = \"16 decatur\" AND ihsaa_class = \"aa\"",
"context": "CREATE TABLE table_name_4 (enrollment VARCHAR, ihsaa_class VARCHAR, primary_conference VARCHAR, county VARCHAR)",
"question": "Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa?"
} |
### QUESTION
When 21 is the number of assists how many sets of blocks are there?
### CONTEXT
CREATE TABLE table_25016555_5 (blocks VARCHAR, assists VARCHAR)
### ANSWER
SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21</s> | {
"answer": "SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21",
"context": "CREATE TABLE table_25016555_5 (blocks VARCHAR, assists VARCHAR)",
"question": "When 21 is the number of assists how many sets of blocks are there?"
} |
### QUESTION
When 2010 is the first elected and Florida 7 is the district who are the candidates?
### CONTEXT
CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR)
### ANSWER
SELECT candidates FROM table_25030512_12 WHERE district = "Florida 7" AND first_elected = "2010"</s> | {
"answer": "SELECT candidates FROM table_25030512_12 WHERE district = \"Florida 7\" AND first_elected = \"2010\"",
"context": "CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR)",
"question": "When 2010 is the first elected and Florida 7 is the district who are the candidates?"
} |
### QUESTION
Name the number of tenants for russia at the saransk stadium
### CONTEXT
CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR)
### ANSWER
SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = "Russia" AND stadium = "Saransk stadium"</s> | {
"answer": "SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = \"Russia\" AND stadium = \"Saransk stadium\"",
"context": "CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR)",
"question": "Name the number of tenants for russia at the saransk stadium"
} |
### QUESTION
What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz?
### CONTEXT
CREATE TABLE table_name_96 (l2_cache VARCHAR, gpu_model VARCHAR, frequency VARCHAR)
### ANSWER
SELECT l2_cache FROM table_name_96 WHERE gpu_model = "iris pro graphics 5200" AND frequency = "2.6 ghz"</s> | {
"answer": "SELECT l2_cache FROM table_name_96 WHERE gpu_model = \"iris pro graphics 5200\" AND frequency = \"2.6 ghz\"",
"context": "CREATE TABLE table_name_96 (l2_cache VARCHAR, gpu_model VARCHAR, frequency VARCHAR)",
"question": "What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz?"
} |
### QUESTION
List the 1st air date for the episode with a iceb786e production code.
### CONTEXT
CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR)
### ANSWER
SELECT original_airdate FROM table_2501754_3 WHERE prod_code = "ICEB786E"</s> | {
"answer": "SELECT original_airdate FROM table_2501754_3 WHERE prod_code = \"ICEB786E\"",
"context": "CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR)",
"question": "List the 1st air date for the episode with a iceb786e production code."
} |
### QUESTION
What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)?
### CONTEXT
CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)
### ANSWER
SELECT frequency FROM table_name_14 WHERE release_price___usd__ = "$383" AND sspec_number = "sr15f(c0)"</s> | {
"answer": "SELECT frequency FROM table_name_14 WHERE release_price___usd__ = \"$383\" AND sspec_number = \"sr15f(c0)\"",
"context": "CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)",
"question": "What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)?"
} |
### QUESTION
How many items are listed under caps when burnley is the club team?
### CONTEXT
CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR)
### ANSWER
SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = "Burnley"</s> | {
"answer": "SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = \"Burnley\"",
"context": "CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR)",
"question": "How many items are listed under caps when burnley is the club team?"
} |
### QUESTION
Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?
### CONTEXT
CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR)
### ANSWER
SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com"</s> | {
"answer": "SELECT driver_s_ FROM table_2503102_1 WHERE engine = \"Chevrolet\" AND car_sponsor_s_ = \"GoDaddy.com\"",
"context": "CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR)",
"question": "Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?"
} |
### QUESTION
What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income?
### CONTEXT
CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR)
### ANSWER
SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = "10.4%"</s> | {
"answer": "SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = \"10.4%\"",
"context": "CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR)",
"question": "What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income?"
} |
### QUESTION
What is the median income for the region where 24.4% pf people make below 60% of the median income?
### CONTEXT
CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR)
### ANSWER
SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = "24.4%"</s> | {
"answer": "SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = \"24.4%\"",
"context": "CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR)",
"question": "What is the median income for the region where 24.4% pf people make below 60% of the median income?"
} |
### QUESTION
How many site entries are there at 3:30pm and the visiting team is coastal carolina?
### CONTEXT
CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR)
### ANSWER
SELECT COUNT(site) FROM table_28298589_2 WHERE time = "3:30pm" AND visiting_team = "Coastal Carolina"</s> | {
"answer": "SELECT COUNT(site) FROM table_28298589_2 WHERE time = \"3:30pm\" AND visiting_team = \"Coastal Carolina\"",
"context": "CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR)",
"question": "How many site entries are there at 3:30pm and the visiting team is coastal carolina?"
} |
### QUESTION
Which region had a life expectancy at birth of 77.9 from 2001-2002?
### CONTEXT
CREATE TABLE table_25042332_33 (region VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR)
### ANSWER
SELECT region FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "77.9"</s> | {
"answer": "SELECT region FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = \"77.9\"",
"context": "CREATE TABLE table_25042332_33 (region VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR)",
"question": "Which region had a life expectancy at birth of 77.9 from 2001-2002?"
} |
### QUESTION
Who is the runner-up for season 2011–12?
### CONTEXT
CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)
### ANSWER
SELECT runner_up FROM table_25058269_1 WHERE season = "2011–12"</s> | {
"answer": "SELECT runner_up FROM table_25058269_1 WHERE season = \"2011–12\"",
"context": "CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)",
"question": "Who is the runner-up for season 2011–12?"
} |
### QUESTION
When hayden roulston is the winner what is the stage?
### CONTEXT
CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
### ANSWER
SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston"</s> | {
"answer": "SELECT stage FROM table_28298471_14 WHERE winner = \"Hayden Roulston\"",
"context": "CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)",
"question": "When hayden roulston is the winner what is the stage?"
} |
### QUESTION
What Country has the Play The Libation Bearers a Base of Mecklenburg?
### CONTEXT
CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR)
### ANSWER
SELECT country FROM table_name_52 WHERE base = "mecklenburg" AND play = "the libation bearers"</s> | {
"answer": "SELECT country FROM table_name_52 WHERE base = \"mecklenburg\" AND play = \"the libation bearers\"",
"context": "CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR)",
"question": "What Country has the Play The Libation Bearers a Base of Mecklenburg?"
} |
### QUESTION
Who wrote the episode with the code xle05012?
### CONTEXT
CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR)
### ANSWER
SELECT written_by FROM table_28348757_6 WHERE production_code = "XLE05012"</s> | {
"answer": "SELECT written_by FROM table_28348757_6 WHERE production_code = \"XLE05012\"",
"context": "CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR)",
"question": "Who wrote the episode with the code xle05012?"
} |
### QUESTION
The final match played against Evie Dominikovic was played on what surface?
### CONTEXT
CREATE TABLE table_name_54 (surface VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT surface FROM table_name_54 WHERE opponent_in_the_final = "evie dominikovic"</s> | {
"answer": "SELECT surface FROM table_name_54 WHERE opponent_in_the_final = \"evie dominikovic\"",
"context": "CREATE TABLE table_name_54 (surface VARCHAR, opponent_in_the_final VARCHAR)",
"question": "The final match played against Evie Dominikovic was played on what surface?"
} |
### QUESTION
What is the area of the corporation named the powell river, the corporation of the city of?
### CONTEXT
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)
### ANSWER
SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = "Powell River, The Corporation of the City of"</s> | {
"answer": "SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = \"Powell River, The Corporation of the City of\"",
"context": "CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)",
"question": "What is the area of the corporation named the powell river, the corporation of the city of?"
} |
### QUESTION
Name the feb 2010 for january 2010 for 6.2%
### CONTEXT
CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR)
### ANSWER
SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = "6.2%"</s> | {
"answer": "SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = \"6.2%\"",
"context": "CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR)",
"question": "Name the feb 2010 for january 2010 for 6.2%"
} |
### QUESTION
How many people directed episode 3 in the season?
### CONTEXT
CREATE TABLE table_25277262_2 (directed_by VARCHAR, no_in_season VARCHAR)
### ANSWER
SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3</s> | {
"answer": "SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3",
"context": "CREATE TABLE table_25277262_2 (directed_by VARCHAR, no_in_season VARCHAR)",
"question": "How many people directed episode 3 in the season?"
} |
### QUESTION
Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event?
### CONTEXT
CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR)
### ANSWER
SELECT method FROM table_name_86 WHERE round = "3" AND res = "loss" AND event = "juiz de fora - fight 1"</s> | {
"answer": "SELECT method FROM table_name_86 WHERE round = \"3\" AND res = \"loss\" AND event = \"juiz de fora - fight 1\"",
"context": "CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR)",
"question": "Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event?"
} |
### QUESTION
In which round was Gabriel Veiga the opponent?
### CONTEXT
CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR)
### ANSWER
SELECT round FROM table_name_42 WHERE opponent = "gabriel veiga"</s> | {
"answer": "SELECT round FROM table_name_42 WHERE opponent = \"gabriel veiga\"",
"context": "CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR)",
"question": "In which round was Gabriel Veiga the opponent?"
} |
### QUESTION
During what conference is North Carolina listed as the tournament winner?
### CONTEXT
CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR)
### ANSWER
SELECT conference FROM table_28365816_2 WHERE tournament_winner = "North Carolina"</s> | {
"answer": "SELECT conference FROM table_28365816_2 WHERE tournament_winner = \"North Carolina\"",
"context": "CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR)",
"question": "During what conference is North Carolina listed as the tournament winner?"
} |
### QUESTION
Name the reidsville for enrollment
### CONTEXT
CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR)
### ANSWER
SELECT reidsville FROM table_25330991_3 WHERE information = "Enrollment"</s> | {
"answer": "SELECT reidsville FROM table_25330991_3 WHERE information = \"Enrollment\"",
"context": "CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR)",
"question": "Name the reidsville for enrollment"
} |
### QUESTION
what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun?
### CONTEXT
CREATE TABLE table_name_55 (country VARCHAR, athlete VARCHAR, notes VARCHAR, rank VARCHAR)
### ANSWER
SELECT country FROM table_name_55 WHERE notes = "sa/b" AND rank > 1 AND athlete = "zhang xiuyun"</s> | {
"answer": "SELECT country FROM table_name_55 WHERE notes = \"sa/b\" AND rank > 1 AND athlete = \"zhang xiuyun\"",
"context": "CREATE TABLE table_name_55 (country VARCHAR, athlete VARCHAR, notes VARCHAR, rank VARCHAR)",
"question": "what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.