text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
I want the director for heroes of the wild
### CONTEXT
CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)
### ANSWER
SELECT director FROM table_name_29 WHERE serial_title = "heroes of the wild" | {
"answer": "SELECT director FROM table_name_29 WHERE serial_title = \"heroes of the wild\"",
"context": "CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)",
"question": "I want the director for heroes of the wild"
} |
### QUESTION
I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes
### CONTEXT
CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)
### ANSWER
SELECT cast FROM table_name_75 WHERE director = "colbert clark and armand schaefer" AND serial_title = "burn 'em up barnes" | {
"answer": "SELECT cast FROM table_name_75 WHERE director = \"colbert clark and armand schaefer\" AND serial_title = \"burn 'em up barnes\"",
"context": "CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)",
"question": "I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes"
} |
### QUESTION
In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4?
### CONTEXT
CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
### ANSWER
SELECT opponent_in_the_final FROM table_name_23 WHERE surface = "clay" AND score = "6–4, 6–4" | {
"answer": "SELECT opponent_in_the_final FROM table_name_23 WHERE surface = \"clay\" AND score = \"6–4, 6–4\"",
"context": "CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)",
"question": "In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4?"
} |
### QUESTION
What county has a CERCLIS ID of scd037405362?
### CONTEXT
CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)
### ANSWER
SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362" | {
"answer": "SELECT county FROM table_name_64 WHERE cerclis_id = \"scd037405362\"",
"context": "CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)",
"question": "What county has a CERCLIS ID of scd037405362?"
} |
### QUESTION
What year was the Drama Desk award won by nominee George Hearn?
### CONTEXT
CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR)
### ANSWER
SELECT year FROM table_name_44 WHERE award = "drama desk award" AND result = "won" AND nominee = "george hearn" | {
"answer": "SELECT year FROM table_name_44 WHERE award = \"drama desk award\" AND result = \"won\" AND nominee = \"george hearn\"",
"context": "CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR)",
"question": "What year was the Drama Desk award won by nominee George Hearn?"
} |
### QUESTION
When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent
### CONTEXT
CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR)
### ANSWER
SELECT date FROM table_name_60 WHERE competition = "2014 world cup qualification" AND location = "kampala" AND opponent = "angola" | {
"answer": "SELECT date FROM table_name_60 WHERE competition = \"2014 world cup qualification\" AND location = \"kampala\" AND opponent = \"angola\"",
"context": "CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR)",
"question": "When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent"
} |
### QUESTION
What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?
### CONTEXT
CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR)
### ANSWER
SELECT zone FROM table_name_42 WHERE round = "semifinal" AND against = "israel" AND opponent = "anna smashnova" | {
"answer": "SELECT zone FROM table_name_42 WHERE round = \"semifinal\" AND against = \"israel\" AND opponent = \"anna smashnova\"",
"context": "CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR)",
"question": "What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?"
} |
### QUESTION
How many different lead margins were stated in the poll administered on September 11, 2008?
### CONTEXT
CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR)
### ANSWER
SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = "September 11, 2008" | {
"answer": "SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = \"September 11, 2008\"",
"context": "CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR)",
"question": "How many different lead margins were stated in the poll administered on September 11, 2008?"
} |
### QUESTION
Tell me the home team score for richmond home team
### CONTEXT
CREATE TABLE table_name_87 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond" | {
"answer": "SELECT home_team AS score FROM table_name_87 WHERE home_team = \"richmond\"",
"context": "CREATE TABLE table_name_87 (home_team VARCHAR)",
"question": "Tell me the home team score for richmond home team"
} |
### QUESTION
When fitzroy was the home team, how much did the away team score?
### CONTEXT
CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_76 WHERE home_team = "fitzroy" | {
"answer": "SELECT away_team AS score FROM table_name_76 WHERE home_team = \"fitzroy\"",
"context": "CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)",
"question": "When fitzroy was the home team, how much did the away team score?"
} |
### QUESTION
Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?
### CONTEXT
CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)
### ANSWER
SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura" | {
"answer": "SELECT method FROM table_name_33 WHERE event = \"shooto\" AND round = 2 AND opponent = \"issei tamura\"",
"context": "CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)",
"question": "Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?"
} |
### QUESTION
Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260
### CONTEXT
CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)
### ANSWER
SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260 | {
"answer": "SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260",
"context": "CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)",
"question": "Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260"
} |
### QUESTION
What is the home team score that played at windy hill?
### CONTEXT
CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_81 WHERE venue = "windy hill" | {
"answer": "SELECT home_team AS score FROM table_name_81 WHERE venue = \"windy hill\"",
"context": "CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)",
"question": "What is the home team score that played at windy hill?"
} |
### QUESTION
Which Constructor has the goodwood circuit?
### CONTEXT
CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR)
### ANSWER
SELECT constructor FROM table_name_53 WHERE circuit = "goodwood" | {
"answer": "SELECT constructor FROM table_name_53 WHERE circuit = \"goodwood\"",
"context": "CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR)",
"question": "Which Constructor has the goodwood circuit?"
} |
### QUESTION
Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita?
### CONTEXT
CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR)
### ANSWER
SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita" | {
"answer": "SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = \"kōzō murashita\"",
"context": "CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR)",
"question": "Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita?"
} |
### QUESTION
How many Laps Did Driver David Coulthard have on a Grid smaller than 11?
### CONTEXT
CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
### ANSWER
SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = "david coulthard" | {
"answer": "SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = \"david coulthard\"",
"context": "CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR)",
"question": "How many Laps Did Driver David Coulthard have on a Grid smaller than 11?"
} |
### QUESTION
How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?
### CONTEXT
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)
### ANSWER
SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = "Darren Flutie, Eric Tillman and Greg Frers" | {
"answer": "SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = \"Darren Flutie, Eric Tillman and Greg Frers\"",
"context": "CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)",
"question": "How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?"
} |
### QUESTION
Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?
### CONTEXT
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)
### ANSWER
SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving" | {
"answer": "SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = \"Brian Williams\" AND sideline_reporters = \"Steve Armitage and Brenda Irving\"",
"context": "CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)",
"question": "Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?"
} |
### QUESTION
Name the league for 1994
### CONTEXT
CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)
### ANSWER
SELECT league FROM table_name_16 WHERE year = "1994" | {
"answer": "SELECT league FROM table_name_16 WHERE year = \"1994\"",
"context": "CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)",
"question": "Name the league for 1994"
} |
### QUESTION
What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?
### CONTEXT
CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
### ANSWER
SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257 | {
"answer": "SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = \"bob dailey\" AND reg_gp > 257",
"context": "CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)",
"question": "What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?"
} |
### QUESTION
What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?
### CONTEXT
CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)
### ANSWER
SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver" | {
"answer": "SELECT pos FROM table_name_39 WHERE race = \"24 hours of le mans\" AND co_driver = \"jackie oliver\"",
"context": "CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)",
"question": "What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?"
} |
### QUESTION
How many points categories are there when the losing bonus is 2 and points for are 642?
### CONTEXT
CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = "2" AND points_for = "642" | {
"answer": "SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = \"2\" AND points_for = \"642\"",
"context": "CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)",
"question": "How many points categories are there when the losing bonus is 2 and points for are 642?"
} |
### QUESTION
What's the Time/Retired of 80 laps with a Grid larger than 2?
### CONTEXT
CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
### ANSWER
SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2 | {
"answer": "SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2",
"context": "CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)",
"question": "What's the Time/Retired of 80 laps with a Grid larger than 2?"
} |
### QUESTION
Where date is october 7 and game greater than 1, what is the highest attendance?
### CONTEXT
CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 7" AND game > 1 | {
"answer": "SELECT MAX(attendance) FROM table_name_43 WHERE date = \"october 7\" AND game > 1",
"context": "CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)",
"question": "Where date is october 7 and game greater than 1, what is the highest attendance?"
} |
### QUESTION
Which leading scorer has a Home of grizzlies, and a Record of 10–28?
### CONTEXT
CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)
### ANSWER
SELECT leading_scorer FROM table_name_66 WHERE home = "grizzlies" AND record = "10–28" | {
"answer": "SELECT leading_scorer FROM table_name_66 WHERE home = \"grizzlies\" AND record = \"10–28\"",
"context": "CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)",
"question": "Which leading scorer has a Home of grizzlies, and a Record of 10–28?"
} |
### QUESTION
What is the Score with a Home of colorado, and a Date with may 11?
### CONTEXT
CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_72 WHERE home = "colorado" AND date = "may 11" | {
"answer": "SELECT score FROM table_name_72 WHERE home = \"colorado\" AND date = \"may 11\"",
"context": "CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)",
"question": "What is the Score with a Home of colorado, and a Date with may 11?"
} |
### QUESTION
On what surface was the game played with a score of 6–4, 6–4?
### CONTEXT
CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)
### ANSWER
SELECT surface FROM table_177273_2 WHERE score = "6–4, 6–4" | {
"answer": "SELECT surface FROM table_177273_2 WHERE score = \"6–4, 6–4\"",
"context": "CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)",
"question": "On what surface was the game played with a score of 6–4, 6–4?"
} |
### QUESTION
What is the final win percentage of the Sault Ste. Marie Greyhounds?
### CONTEXT
CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)
### ANSWER
SELECT final_win__percentage FROM table_17751942_4 WHERE team = "Sault Ste. Marie Greyhounds" | {
"answer": "SELECT final_win__percentage FROM table_17751942_4 WHERE team = \"Sault Ste. Marie Greyhounds\"",
"context": "CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)",
"question": "What is the final win percentage of the Sault Ste. Marie Greyhounds? "
} |
### QUESTION
Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?
### CONTEXT
CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)
### ANSWER
SELECT mission FROM table_name_47 WHERE launch_date = "december 30, 1970; 14:50 gmt" | {
"answer": "SELECT mission FROM table_name_47 WHERE launch_date = \"december 30, 1970; 14:50 gmt\"",
"context": "CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)",
"question": "Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?"
} |
### QUESTION
Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r
### CONTEXT
CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)
### ANSWER
SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = "6.4" AND archive = "16mm t/r" | {
"answer": "SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = \"6.4\" AND archive = \"16mm t/r\"",
"context": "CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)",
"question": "Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r"
} |
### QUESTION
How many laps recorded in 2001?
### CONTEXT
CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)
### ANSWER
SELECT laps FROM table_17802778_1 WHERE year = 2001 | {
"answer": "SELECT laps FROM table_17802778_1 WHERE year = 2001",
"context": "CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)",
"question": "How many laps recorded in 2001?"
} |
### QUESTION
What was the average speed (mph) for the racer who finished in 1:45:00?
### CONTEXT
CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)
### ANSWER
SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00" | {
"answer": "SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = \"1:45:00\"",
"context": "CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)",
"question": "What was the average speed (mph) for the racer who finished in 1:45:00?"
} |
### QUESTION
Name the slope length for 1966 groundstation
### CONTEXT
CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)
### ANSWER
SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966 | {
"answer": "SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966",
"context": "CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)",
"question": "Name the slope length for 1966 groundstation"
} |
### QUESTION
How many bronze medals for the nation ranked above 2, and under 0 golds?
### CONTEXT
CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)
### ANSWER
SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0 | {
"answer": "SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0",
"context": "CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)",
"question": "How many bronze medals for the nation ranked above 2, and under 0 golds?"
} |
### QUESTION
What were the requirements for the role played by Robert Austin in the original production?
### CONTEXT
CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR)
### ANSWER
SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin" | {
"answer": "SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = \"Robert Austin\"",
"context": "CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR)",
"question": "What were the requirements for the role played by Robert Austin in the original production?"
} |
### QUESTION
How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?
### CONTEXT
CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR)
### ANSWER
SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = "Tracy Taylor" | {
"answer": "SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = \"Tracy Taylor\"",
"context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR)",
"question": "How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?"
} |
### QUESTION
What RolePlay actor played the same role Alison Pargeter played in the original production?
### CONTEXT
CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR)
### ANSWER
SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = "Alison Pargeter" | {
"answer": "SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = \"Alison Pargeter\"",
"context": "CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR)",
"question": "What RolePlay actor played the same role Alison Pargeter played in the original production?"
} |
### QUESTION
On how many locations is there a church named Askrova Bedehuskapell, built in 1957?
### CONTEXT
CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)
### ANSWER
SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = "1957" AND church_name = "Askrova bedehuskapell" | {
"answer": "SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = \"1957\" AND church_name = \"Askrova bedehuskapell\"",
"context": "CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)",
"question": "On how many locations is there a church named Askrova Bedehuskapell, built in 1957?"
} |
### QUESTION
How many people were in the crowd at Lake Oval?
### CONTEXT
CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)
### ANSWER
SELECT crowd FROM table_name_2 WHERE venue = "lake oval" | {
"answer": "SELECT crowd FROM table_name_2 WHERE venue = \"lake oval\"",
"context": "CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)",
"question": "How many people were in the crowd at Lake Oval?"
} |
### QUESTION
What team was the home team on 27 june 1981, at vfl park?
### CONTEXT
CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team FROM table_name_88 WHERE date = "27 june 1981" AND venue = "vfl park" | {
"answer": "SELECT home_team FROM table_name_88 WHERE date = \"27 june 1981\" AND venue = \"vfl park\"",
"context": "CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)",
"question": "What team was the home team on 27 june 1981, at vfl park?"
} |
### QUESTION
How many powiats have mstsislaw as a capital?
### CONTEXT
CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR)
### ANSWER
SELECT number_of_powiats FROM table_1784514_1 WHERE capital = "Mstsislaw" | {
"answer": "SELECT number_of_powiats FROM table_1784514_1 WHERE capital = \"Mstsislaw\"",
"context": "CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR)",
"question": "How many powiats have mstsislaw as a capital?"
} |
### QUESTION
How many capitals had brest litovsk voivodeship as voivodeship after 1569?
### CONTEXT
CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR)
### ANSWER
SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = "Brest Litovsk Voivodeship" | {
"answer": "SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = \"Brest Litovsk Voivodeship\"",
"context": "CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR)",
"question": "How many capitals had brest litovsk voivodeship as voivodeship after 1569?"
} |
### QUESTION
Name the number of parish for vilnes kyrkje
### CONTEXT
CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
### ANSWER
SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = "Vilnes kyrkje" | {
"answer": "SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = \"Vilnes kyrkje\"",
"context": "CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)",
"question": "Name the number of parish for vilnes kyrkje"
} |
### QUESTION
What is the GDP (nominal) with Population of 5,125,693?
### CONTEXT
CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR)
### ANSWER
SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = "5,125,693" | {
"answer": "SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = \"5,125,693\"",
"context": "CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR)",
"question": "What is the GDP (nominal) with Population of 5,125,693?"
} |
### QUESTION
Name the maximum year built for holmedal kyrkje
### CONTEXT
CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR)
### ANSWER
SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = "Holmedal kyrkje" | {
"answer": "SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = \"Holmedal kyrkje\"",
"context": "CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR)",
"question": "Name the maximum year built for holmedal kyrkje"
} |
### QUESTION
In how many weeks was the game played on November 3 played?
### CONTEXT
CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR)
### ANSWER
SELECT COUNT(week) FROM table_17869717_1 WHERE date = "November 3" | {
"answer": "SELECT COUNT(week) FROM table_17869717_1 WHERE date = \"November 3\"",
"context": "CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR)",
"question": "In how many weeks was the game played on November 3 played?"
} |
### QUESTION
What is the broadcast date when 8.3 million viewers watched?
### CONTEXT
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
### ANSWER
SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = "8.3" | {
"answer": "SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = \"8.3\"",
"context": "CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)",
"question": "What is the broadcast date when 8.3 million viewers watched?"
} |
### QUESTION
what is the division north when division south was kožuf and division southwest was ilinden velmej
### CONTEXT
CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR)
### ANSWER
SELECT division_north FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_southwest = "Ilinden Velmej" | {
"answer": "SELECT division_north FROM table_17881033_1 WHERE division_south = \"Kožuf\" AND division_southwest = \"Ilinden Velmej\"",
"context": "CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR)",
"question": "what is the division north when division south was kožuf and division southwest was ilinden velmej"
} |
### QUESTION
What is the retail space of the Stony Point Fashion Park Mall?
### CONTEXT
CREATE TABLE table_name_70 (retail_space_sq_feet__m²_ VARCHAR, mall_name VARCHAR)
### ANSWER
SELECT retail_space_sq_feet__m²_ FROM table_name_70 WHERE mall_name = "stony point fashion park" | {
"answer": "SELECT retail_space_sq_feet__m²_ FROM table_name_70 WHERE mall_name = \"stony point fashion park\"",
"context": "CREATE TABLE table_name_70 (retail_space_sq_feet__m²_ VARCHAR, mall_name VARCHAR)",
"question": "What is the retail space of the Stony Point Fashion Park Mall?"
} |
### QUESTION
What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?
### CONTEXT
CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
### ANSWER
SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)" | {
"answer": "SELECT score FROM table_name_81 WHERE visitor = \"bucks\" AND leading_scorer = \"maurice williams (25)\"",
"context": "CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)",
"question": "What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?"
} |
### QUESTION
Who was the outgoing manager when the incoming manager was joão pereira?
### CONTEXT
CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)
### ANSWER
SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira" | {
"answer": "SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = \"João Pereira\"",
"context": "CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)",
"question": "Who was the outgoing manager when the incoming manager was joão pereira?"
} |
### QUESTION
On what date is there a Tryre of d at the Circuit of monaco?
### CONTEXT
CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR)
### ANSWER
SELECT date FROM table_name_91 WHERE tyre = "d" AND circuit = "monaco" | {
"answer": "SELECT date FROM table_name_91 WHERE tyre = \"d\" AND circuit = \"monaco\"",
"context": "CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR)",
"question": "On what date is there a Tryre of d at the Circuit of monaco?"
} |
### QUESTION
If the home is Atlético Tucumán, what is the name of the first leg?
### CONTEXT
CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)
### ANSWER
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "Atlético Tucumán" | {
"answer": "SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = \"Atlético Tucumán\"",
"context": "CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)",
"question": "If the home is Atlético Tucumán, what is the name of the first leg?"
} |
### QUESTION
What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?
### CONTEXT
CREATE TABLE table_17964087_2 (chinese_name VARCHAR, romanised_name VARCHAR)
### ANSWER
SELECT chinese_name FROM table_17964087_2 WHERE romanised_name = "Chan Chi-yuen, Paul" | {
"answer": "SELECT chinese_name FROM table_17964087_2 WHERE romanised_name = \"Chan Chi-yuen, Paul\"",
"context": "CREATE TABLE table_17964087_2 (chinese_name VARCHAR, romanised_name VARCHAR)",
"question": "What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?"
} |
### QUESTION
For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name.
### CONTEXT
CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)
### ANSWER
SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = "Assistant Police Commissioner (ret'd)" | {
"answer": "SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = \"Assistant Police Commissioner (ret'd)\"",
"context": "CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)",
"question": "For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name. "
} |
### QUESTION
What is the release date for the standard cd release format in north america?
### CONTEXT
CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR)
### ANSWER
SELECT release_date FROM table_name_18 WHERE release_format = "standard cd" AND country = "north america" | {
"answer": "SELECT release_date FROM table_name_18 WHERE release_format = \"standard cd\" AND country = \"north america\"",
"context": "CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR)",
"question": "What is the release date for the standard cd release format in north america?"
} |
### QUESTION
What was the comment on the Denali area?
### CONTEXT
CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)
### ANSWER
SELECT comment FROM table_17978052_2 WHERE borough_or_census_area = "Denali" | {
"answer": "SELECT comment FROM table_17978052_2 WHERE borough_or_census_area = \"Denali\"",
"context": "CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)",
"question": "What was the comment on the Denali area?"
} |
### QUESTION
How many dams are there in the Nome (CA) area?
### CONTEXT
CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)
### ANSWER
SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = "Nome (CA)" | {
"answer": "SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = \"Nome (CA)\"",
"context": "CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)",
"question": "How many dams are there in the Nome (CA) area?"
} |
### QUESTION
What was the game record when the opponent was 'at Los Angeles Raiders'?
### CONTEXT
CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_17972193_1 WHERE opponent = "at Los Angeles Raiders" | {
"answer": "SELECT record FROM table_17972193_1 WHERE opponent = \"at Los Angeles Raiders\"",
"context": "CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)",
"question": "What was the game record when the opponent was 'at Los Angeles Raiders'?"
} |
### QUESTION
How many total number of attendance were there when the game was held in Anaheim Stadium?
### CONTEXT
CREATE TABLE table_17972193_1 (attendance VARCHAR, game_site VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_17972193_1 WHERE game_site = "Anaheim Stadium" | {
"answer": "SELECT COUNT(attendance) FROM table_17972193_1 WHERE game_site = \"Anaheim Stadium\"",
"context": "CREATE TABLE table_17972193_1 (attendance VARCHAR, game_site VARCHAR)",
"question": "How many total number of attendance were there when the game was held in Anaheim Stadium?"
} |
### QUESTION
What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?
### CONTEXT
CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)
### ANSWER
SELECT MIN(apps) FROM table_name_79 WHERE country = "honduras" AND goals < 2 AND team = "club deportivo victoria" AND division > 1 | {
"answer": "SELECT MIN(apps) FROM table_name_79 WHERE country = \"honduras\" AND goals < 2 AND team = \"club deportivo victoria\" AND division > 1",
"context": "CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)",
"question": "What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?"
} |
### QUESTION
What's the average Grid for those who spun off after Lap 64?
### CONTEXT
CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64 | {
"answer": "SELECT AVG(grid) FROM table_name_68 WHERE time_retired = \"spun off\" AND laps > 64",
"context": "CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)",
"question": "What's the average Grid for those who spun off after Lap 64?"
} |
### QUESTION
What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?
### CONTEXT
CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT MAX(laps) FROM table_name_42 WHERE constructor = "tyrrell - yamaha" AND time_retired = "+ 1 lap" | {
"answer": "SELECT MAX(laps) FROM table_name_42 WHERE constructor = \"tyrrell - yamaha\" AND time_retired = \"+ 1 lap\"",
"context": "CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)",
"question": "What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?"
} |
### QUESTION
What format is the Catalogue 9362486152 from the region of Australia in?
### CONTEXT
CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR)
### ANSWER
SELECT format FROM table_name_79 WHERE catalogue = "9362486152" AND region = "australia" | {
"answer": "SELECT format FROM table_name_79 WHERE catalogue = \"9362486152\" AND region = \"australia\"",
"context": "CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR)",
"question": "What format is the Catalogue 9362486152 from the region of Australia in?"
} |
### QUESTION
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?
### CONTEXT
CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR)
### ANSWER
SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5 | {
"answer": "SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5",
"context": "CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR)",
"question": "What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?"
} |
### QUESTION
What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?
### CONTEXT
CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR)
### ANSWER
SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1 | {
"answer": "SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1",
"context": "CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR)",
"question": "What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?"
} |
### QUESTION
What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?
### CONTEXT
CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR)
### ANSWER
SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4 | {
"answer": "SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4",
"context": "CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR)",
"question": "What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?"
} |
### QUESTION
Why did the change happen in the state where the formal installation happen on February 14, 1859?
### CONTEXT
CREATE TABLE table_1802760_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
### ANSWER
SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = "February 14, 1859" | {
"answer": "SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = \"February 14, 1859\"",
"context": "CREATE TABLE table_1802760_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)",
"question": "Why did the change happen in the state where the formal installation happen on February 14, 1859?"
} |
### QUESTION
List all the international lacrosse league competitions for Toronto Rock.
### CONTEXT
CREATE TABLE table_18042409_1 (international_competition VARCHAR, national_lacrosse_league VARCHAR)
### ANSWER
SELECT international_competition FROM table_18042409_1 WHERE national_lacrosse_league = "Toronto Rock" | {
"answer": "SELECT international_competition FROM table_18042409_1 WHERE national_lacrosse_league = \"Toronto Rock\"",
"context": "CREATE TABLE table_18042409_1 (international_competition VARCHAR, national_lacrosse_league VARCHAR)",
"question": "List all the international lacrosse league competitions for Toronto Rock."
} |
### QUESTION
Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)
### CONTEXT
CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR)
### ANSWER
SELECT shuji_kondo FROM table_name_90 WHERE mazada = "x" AND ryuji_hijikata = "hijikata (14:24)" | {
"answer": "SELECT shuji_kondo FROM table_name_90 WHERE mazada = \"x\" AND ryuji_hijikata = \"hijikata (14:24)\"",
"context": "CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR)",
"question": "Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)"
} |
### QUESTION
What was the decision on october 5?
### CONTEXT
CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR)
### ANSWER
SELECT decision FROM table_name_44 WHERE date = "october 5" | {
"answer": "SELECT decision FROM table_name_44 WHERE date = \"october 5\"",
"context": "CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR)",
"question": "What was the decision on october 5?"
} |
### QUESTION
What city of license has a Frequency under 107.7, and a call sign of w247aq?
### CONTEXT
CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = "w247aq" | {
"answer": "SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = \"w247aq\"",
"context": "CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)",
"question": "What city of license has a Frequency under 107.7, and a call sign of w247aq?"
} |
### QUESTION
The plural word of following lines or pages has what plural abbreviation?
### CONTEXT
CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR)
### ANSWER
SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = "following lines or pages" | {
"answer": "SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = \"following lines or pages\"",
"context": "CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR)",
"question": "The plural word of following lines or pages has what plural abbreviation?"
} |
### QUESTION
What is the Pinyin transcription for "Alas for the Days Gone By"?
### CONTEXT
CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)
### ANSWER
SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = "Alas for the Days Gone By" | {
"answer": "SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = \"Alas for the Days Gone By\"",
"context": "CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)",
"question": "What is the Pinyin transcription for \"Alas for the Days Gone By\"?"
} |
### QUESTION
Which candidate lost the election that 770,046 people voted in?
### CONTEXT
CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)
### ANSWER
SELECT candidate FROM table_name_99 WHERE outcome_of_election = "lost" AND number_of_votes = "770,046" | {
"answer": "SELECT candidate FROM table_name_99 WHERE outcome_of_election = \"lost\" AND number_of_votes = \"770,046\"",
"context": "CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)",
"question": "Which candidate lost the election that 770,046 people voted in?"
} |
### QUESTION
which year was the original title გაღმა ნაპირი
### CONTEXT
CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)
### ANSWER
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = "გაღმა ნაპირი" | {
"answer": "SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = \"გაღმა ნაპირი\"",
"context": "CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)",
"question": "which year was the original title გაღმა ნაპირი"
} |
### QUESTION
what race did Dominican win with a distance of 1-1/16 miles?
### CONTEXT
CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR)
### ANSWER
SELECT race FROM table_name_57 WHERE winning_horse = "dominican" AND distance = "1-1/16 miles" | {
"answer": "SELECT race FROM table_name_57 WHERE winning_horse = \"dominican\" AND distance = \"1-1/16 miles\"",
"context": "CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR)",
"question": "what race did Dominican win with a distance of 1-1/16 miles?"
} |
### QUESTION
In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?
### CONTEXT
CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR)
### ANSWER
SELECT year FROM table_name_95 WHERE extra = "800 m" AND tournament = "european indoor championships" AND result = "2nd" | {
"answer": "SELECT year FROM table_name_95 WHERE extra = \"800 m\" AND tournament = \"european indoor championships\" AND result = \"2nd\"",
"context": "CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR)",
"question": "In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?"
} |
### QUESTION
What is the earnings per share when the net profit is 16.2 million dollars?
### CONTEXT
CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)
### ANSWER
SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.2" | {
"answer": "SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = \"16.2\"",
"context": "CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)",
"question": "What is the earnings per share when the net profit is 16.2 million dollars?"
} |
### QUESTION
Who is the partner in the final with a score of 2–6, 7–6, 7–6?
### CONTEXT
CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR)
### ANSWER
SELECT partner FROM table_name_10 WHERE score_in_the_final = "2–6, 7–6, 7–6" | {
"answer": "SELECT partner FROM table_name_10 WHERE score_in_the_final = \"2–6, 7–6, 7–6\"",
"context": "CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR)",
"question": "Who is the partner in the final with a score of 2–6, 7–6, 7–6?"
} |
### QUESTION
On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7?
### CONTEXT
CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR)
### ANSWER
SELECT surface FROM table_name_66 WHERE outcome = "runner-up" AND partner = "ivan lendl" AND score_in_the_final = "2–6, 6–7" | {
"answer": "SELECT surface FROM table_name_66 WHERE outcome = \"runner-up\" AND partner = \"ivan lendl\" AND score_in_the_final = \"2–6, 6–7\"",
"context": "CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR)",
"question": "On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7?"
} |
### QUESTION
What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?
### CONTEXT
CREATE TABLE table_18173916_6 (episodes VARCHAR, tuesday VARCHAR)
### ANSWER
SELECT episodes FROM table_18173916_6 WHERE tuesday = "224 Assassin's Creed: Brotherhood Circus Training" | {
"answer": "SELECT episodes FROM table_18173916_6 WHERE tuesday = \"224 Assassin's Creed: Brotherhood Circus Training\"",
"context": "CREATE TABLE table_18173916_6 (episodes VARCHAR, tuesday VARCHAR)",
"question": "What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?"
} |
### QUESTION
What was the away team score at western oval?
### CONTEXT
CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_46 WHERE venue = "western oval" | {
"answer": "SELECT away_team AS score FROM table_name_46 WHERE venue = \"western oval\"",
"context": "CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)",
"question": "What was the away team score at western oval?"
} |
### QUESTION
When the home attendance is 3.123, what's the highest away attendance?
### CONTEXT
CREATE TABLE table_1816947_2 (highest_attendance_away VARCHAR, average_attendance_home VARCHAR)
### ANSWER
SELECT highest_attendance_away FROM table_1816947_2 WHERE average_attendance_home = "3.123" | {
"answer": "SELECT highest_attendance_away FROM table_1816947_2 WHERE average_attendance_home = \"3.123\"",
"context": "CREATE TABLE table_1816947_2 (highest_attendance_away VARCHAR, average_attendance_home VARCHAR)",
"question": "When the home attendance is 3.123, what's the highest away attendance?"
} |
### QUESTION
what was the score when goran ivanišević was runner up and the tournament was in algarve?
### CONTEXT
CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR)
### ANSWER
SELECT score FROM table_name_53 WHERE runner_up = "goran ivanišević" AND tournament = "algarve" | {
"answer": "SELECT score FROM table_name_53 WHERE runner_up = \"goran ivanišević\" AND tournament = \"algarve\"",
"context": "CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR)",
"question": "what was the score when goran ivanišević was runner up and the tournament was in algarve?"
} |
### QUESTION
What was the violent crime rate in the city where the robbery rate was 201.4?
### CONTEXT
CREATE TABLE table_1818254_1 (violent_crime VARCHAR, robbery VARCHAR)
### ANSWER
SELECT violent_crime FROM table_1818254_1 WHERE robbery = "201.4" | {
"answer": "SELECT violent_crime FROM table_1818254_1 WHERE robbery = \"201.4\"",
"context": "CREATE TABLE table_1818254_1 (violent_crime VARCHAR, robbery VARCHAR)",
"question": "What was the violent crime rate in the city where the robbery rate was 201.4?"
} |
### QUESTION
How many cities were there in 2012 where the rate of burglary was 224.8?
### CONTEXT
CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)
### ANSWER
SELECT COUNT(property_crime) FROM table_1818254_1 WHERE burglary = "224.8" | {
"answer": "SELECT COUNT(property_crime) FROM table_1818254_1 WHERE burglary = \"224.8\"",
"context": "CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)",
"question": "How many cities were there in 2012 where the rate of burglary was 224.8?"
} |
### QUESTION
When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?
### CONTEXT
CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT crowd FROM table_name_1 WHERE date = "19 july 1980" AND away_team = "footscray" | {
"answer": "SELECT crowd FROM table_name_1 WHERE date = \"19 july 1980\" AND away_team = \"footscray\"",
"context": "CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)",
"question": "When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?"
} |
### QUESTION
How many series had viewers totaling 23.93 million?
### CONTEXT
CREATE TABLE table_18217753_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT COUNT(series__number) FROM table_18217753_1 WHERE us_viewers__millions_ = "23.93" | {
"answer": "SELECT COUNT(series__number) FROM table_18217753_1 WHERE us_viewers__millions_ = \"23.93\"",
"context": "CREATE TABLE table_18217753_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "How many series had viewers totaling 23.93 million?"
} |
### QUESTION
How many original air dates totaled 26.06 million viewers?
### CONTEXT
CREATE TABLE table_18217753_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT COUNT(original_air_date) FROM table_18217753_1 WHERE us_viewers__millions_ = "26.06" | {
"answer": "SELECT COUNT(original_air_date) FROM table_18217753_1 WHERE us_viewers__millions_ = \"26.06\"",
"context": "CREATE TABLE table_18217753_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "How many original air dates totaled 26.06 million viewers?"
} |
Subsets and Splits