text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
During the Mid-American Conference who is listed as the tournament winner?
### CONTEXT
CREATE TABLE table_28365816_2 (tournament_winner VARCHAR, conference VARCHAR)
### ANSWER
SELECT tournament_winner FROM table_28365816_2 WHERE conference = "Mid-American conference"</s> | {
"answer": "SELECT tournament_winner FROM table_28365816_2 WHERE conference = \"Mid-American conference\"",
"context": "CREATE TABLE table_28365816_2 (tournament_winner VARCHAR, conference VARCHAR)",
"question": "During the Mid-American Conference who is listed as the tournament winner?"
} |
### QUESTION
Which team drafted the player from the HC Lada Togliatti (Russia)?
### CONTEXT
CREATE TABLE table_2840500_5 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
### ANSWER
SELECT nhl_team FROM table_2840500_5 WHERE college_junior_club_team = "HC Lada Togliatti (Russia)"</s> | {
"answer": "SELECT nhl_team FROM table_2840500_5 WHERE college_junior_club_team = \"HC Lada Togliatti (Russia)\"",
"context": "CREATE TABLE table_2840500_5 (nhl_team VARCHAR, college_junior_club_team VARCHAR)",
"question": "Which team drafted the player from the HC Lada Togliatti (Russia)?"
} |
### QUESTION
Name the least season number for two marriage proposals
### CONTEXT
CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR)
### ANSWER
SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = "Two marriage proposals"</s> | {
"answer": "SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = \"Two marriage proposals\"",
"context": "CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR)",
"question": "Name the least season number for two marriage proposals"
} |
### QUESTION
Which High rebounds has a Game smaller than 9, and a Opponent of detroit?
### CONTEXT
CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = "detroit"</s> | {
"answer": "SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = \"detroit\"",
"context": "CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR)",
"question": "Which High rebounds has a Game smaller than 9, and a Opponent of detroit?"
} |
### QUESTION
What is the minimum pick of a centre from the Czech Republic?
### CONTEXT
CREATE TABLE table_2840500_2 (pick INTEGER, position VARCHAR, nationality VARCHAR)
### ANSWER
SELECT MIN(pick) FROM table_2840500_2 WHERE position = "Centre" AND nationality = "Czech Republic"</s> | {
"answer": "SELECT MIN(pick) FROM table_2840500_2 WHERE position = \"Centre\" AND nationality = \"Czech Republic\"",
"context": "CREATE TABLE table_2840500_2 (pick INTEGER, position VARCHAR, nationality VARCHAR)",
"question": "What is the minimum pick of a centre from the Czech Republic?"
} |
### QUESTION
How many events did clay win?
### CONTEXT
CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR)
### ANSWER
SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = "clay"</s> | {
"answer": "SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = \"clay\"",
"context": "CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR)",
"question": "How many events did clay win?"
} |
### QUESTION
Which Surface has an Opponent of rafael nadal, and an Event of 2?
### CONTEXT
CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)
### ANSWER
SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2</s> | {
"answer": "SELECT surface FROM table_name_59 WHERE opponent = \"rafael nadal\" AND NOT event = 2",
"context": "CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)",
"question": "Which Surface has an Opponent of rafael nadal, and an Event of 2?"
} |
### QUESTION
What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?
### CONTEXT
CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)
### ANSWER
SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre"</s> | {
"answer": "SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = \"group\" AND finish = \"bagnères-de-bigorre\"",
"context": "CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)",
"question": "What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?"
} |
### QUESTION
What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?
### CONTEXT
CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)
### ANSWER
SELECT distance FROM table_28490105_1 WHERE supporting = "Champ Car World Series ( Grand Prix of Cleveland )" AND tc_winning_car = "Pierre Kleinubing"</s> | {
"answer": "SELECT distance FROM table_28490105_1 WHERE supporting = \"Champ Car World Series ( Grand Prix of Cleveland )\" AND tc_winning_car = \"Pierre Kleinubing\"",
"context": "CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)",
"question": "What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?"
} |
### QUESTION
What is the earliest round where the gt winning car is max angelelli?
### CONTEXT
CREATE TABLE table_28490105_1 (rnd INTEGER, gt_winning_car VARCHAR)
### ANSWER
SELECT MIN(rnd) FROM table_28490105_1 WHERE gt_winning_car = "Max Angelelli"</s> | {
"answer": "SELECT MIN(rnd) FROM table_28490105_1 WHERE gt_winning_car = \"Max Angelelli\"",
"context": "CREATE TABLE table_28490105_1 (rnd INTEGER, gt_winning_car VARCHAR)",
"question": "What is the earliest round where the gt winning car is max angelelli?"
} |
### QUESTION
Who was supporting in round 1 where the gt winning car was dodge viper?
### CONTEXT
CREATE TABLE table_28490105_1 (supporting VARCHAR, gt_winning_car VARCHAR, rnd VARCHAR)
### ANSWER
SELECT supporting FROM table_28490105_1 WHERE gt_winning_car = "Dodge Viper" AND rnd = 1</s> | {
"answer": "SELECT supporting FROM table_28490105_1 WHERE gt_winning_car = \"Dodge Viper\" AND rnd = 1",
"context": "CREATE TABLE table_28490105_1 (supporting VARCHAR, gt_winning_car VARCHAR, rnd VARCHAR)",
"question": "Who was supporting in round 1 where the gt winning car was dodge viper?"
} |
### QUESTION
How many divisions in bowling ?
### CONTEXT
CREATE TABLE table_2849652_1 (_number_of_divisions VARCHAR, sport VARCHAR)
### ANSWER
SELECT _number_of_divisions FROM table_2849652_1 WHERE sport = "Bowling"</s> | {
"answer": "SELECT _number_of_divisions FROM table_2849652_1 WHERE sport = \"Bowling\"",
"context": "CREATE TABLE table_2849652_1 (_number_of_divisions VARCHAR, sport VARCHAR)",
"question": "How many divisions in bowling ? "
} |
### QUESTION
Where was the 2011-2012 soccer state tournament held?
### CONTEXT
CREATE TABLE table_2849652_2 (sport VARCHAR)
### ANSWER
SELECT 2011 AS _2012_state_tournament_location FROM table_2849652_2 WHERE sport = "Soccer"</s> | {
"answer": "SELECT 2011 AS _2012_state_tournament_location FROM table_2849652_2 WHERE sport = \"Soccer\"",
"context": "CREATE TABLE table_2849652_2 (sport VARCHAR)",
"question": "Where was the 2011-2012 soccer state tournament held?"
} |
### QUESTION
What is the highest championship that has 1 as the league cup, and 17 as the total?
### CONTEXT
CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR)
### ANSWER
SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17"</s> | {
"answer": "SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = \"17\"",
"context": "CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR)",
"question": "What is the highest championship that has 1 as the league cup, and 17 as the total?"
} |
### QUESTION
What's the date when Yelena Isinbayeva for Russia was in Beijing, China?
### CONTEXT
CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR)
### ANSWER
SELECT date FROM table_name_82 WHERE nation = "russia" AND place = "beijing, china" AND athlete = "yelena isinbayeva"</s> | {
"answer": "SELECT date FROM table_name_82 WHERE nation = \"russia\" AND place = \"beijing, china\" AND athlete = \"yelena isinbayeva\"",
"context": "CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR)",
"question": "What's the date when Yelena Isinbayeva for Russia was in Beijing, China?"
} |
### QUESTION
If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second?
### CONTEXT
CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR)
### ANSWER
SELECT second FROM table_25563779_4 WHERE national_trophy_rookie = "Gerrard Barrabeig"</s> | {
"answer": "SELECT second FROM table_25563779_4 WHERE national_trophy_rookie = \"Gerrard Barrabeig\"",
"context": "CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR)",
"question": "If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second?"
} |
### QUESTION
What was the location when the winning driver was Nathanaël Berthon?
### CONTEXT
CREATE TABLE table_25572068_1 (location VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT location FROM table_25572068_1 WHERE winning_driver = "Nathanaël Berthon"</s> | {
"answer": "SELECT location FROM table_25572068_1 WHERE winning_driver = \"Nathanaël Berthon\"",
"context": "CREATE TABLE table_25572068_1 (location VARCHAR, winning_driver VARCHAR)",
"question": "What was the location when the winning driver was Nathanaël Berthon?"
} |
### QUESTION
What is the name of the swimmer from Australia in lane 4 with a heat larger than 4?
### CONTEXT
CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
### ANSWER
SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = "australia"</s> | {
"answer": "SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = \"australia\"",
"context": "CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)",
"question": "What is the name of the swimmer from Australia in lane 4 with a heat larger than 4?"
} |
### QUESTION
how many parts does detroit red wings person urban nordin play
### CONTEXT
CREATE TABLE table_2850912_8 (position VARCHAR, nhl_team VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(position) FROM table_2850912_8 WHERE nhl_team = "Detroit Red Wings" AND player = "Urban Nordin"</s> | {
"answer": "SELECT COUNT(position) FROM table_2850912_8 WHERE nhl_team = \"Detroit Red Wings\" AND player = \"Urban Nordin\"",
"context": "CREATE TABLE table_2850912_8 (position VARCHAR, nhl_team VARCHAR, player VARCHAR)",
"question": "how many parts does detroit red wings person urban nordin play"
} |
### QUESTION
What is the website of the school affiliated with the Church of England?
### CONTEXT
CREATE TABLE table_28523_3 (school VARCHAR, religious_affiliation VARCHAR)
### ANSWER
SELECT school AS website FROM table_28523_3 WHERE religious_affiliation = "Church of England"</s> | {
"answer": "SELECT school AS website FROM table_28523_3 WHERE religious_affiliation = \"Church of England\"",
"context": "CREATE TABLE table_28523_3 (school VARCHAR, religious_affiliation VARCHAR)",
"question": "What is the website of the school affiliated with the Church of England?"
} |
### QUESTION
Name the number of population for врбас
### CONTEXT
CREATE TABLE table_2562572_20 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)
### ANSWER
SELECT COUNT(population__2011_) FROM table_2562572_20 WHERE cyrillic_name_other_names = "Врбас"</s> | {
"answer": "SELECT COUNT(population__2011_) FROM table_2562572_20 WHERE cyrillic_name_other_names = \"Врбас\"",
"context": "CREATE TABLE table_2562572_20 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)",
"question": "Name the number of population for врбас"
} |
### QUESTION
What date did the episode directed by Victor Cook and Written by Brat Jennett air in the U.S.?
### CONTEXT
CREATE TABLE table_28511558_2 (original_air_date__us_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)
### ANSWER
SELECT original_air_date__us_ FROM table_28511558_2 WHERE directed_by = "Victor Cook" AND written_by = "Brat Jennett"</s> | {
"answer": "SELECT original_air_date__us_ FROM table_28511558_2 WHERE directed_by = \"Victor Cook\" AND written_by = \"Brat Jennett\"",
"context": "CREATE TABLE table_28511558_2 (original_air_date__us_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)",
"question": "What date did the episode directed by Victor Cook and Written by Brat Jennett air in the U.S.?"
} |
### QUESTION
Name the cyrillic name for orthodox christianity village and bačko dobro polje
### CONTEXT
CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)
### ANSWER
SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND settlement = "Bačko Dobro Polje"</s> | {
"answer": "SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = \"Orthodox Christianity\" AND type = \"village\" AND settlement = \"Bačko Dobro Polje\"",
"context": "CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)",
"question": "Name the cyrillic name for orthodox christianity village and bačko dobro polje"
} |
### QUESTION
When Alberto Contador Kanstantsin Sivtsov was the general classification and Alessandro Petacchi was the points classification at the same time while Mark Cavendish is the winner, who was the mountain classification?
### CONTEXT
CREATE TABLE table_28538368_2 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR, points_classification VARCHAR)
### ANSWER
SELECT mountains_classification FROM table_28538368_2 WHERE general_classification = "Alberto Contador Kanstantsin Sivtsov" AND points_classification = "Alessandro Petacchi" AND winner = "Mark Cavendish"</s> | {
"answer": "SELECT mountains_classification FROM table_28538368_2 WHERE general_classification = \"Alberto Contador Kanstantsin Sivtsov\" AND points_classification = \"Alessandro Petacchi\" AND winner = \"Mark Cavendish\"",
"context": "CREATE TABLE table_28538368_2 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR, points_classification VARCHAR)",
"question": "When Alberto Contador Kanstantsin Sivtsov was the general classification and Alessandro Petacchi was the points classification at the same time while Mark Cavendish is the winner, who was the mountain classification?"
} |
### QUESTION
What is the name of the young rider classification when Paolo Tiralongo won?
### CONTEXT
CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)
### ANSWER
SELECT young_rider_classification FROM table_28538368_2 WHERE winner = "Paolo Tiralongo"</s> | {
"answer": "SELECT young_rider_classification FROM table_28538368_2 WHERE winner = \"Paolo Tiralongo\"",
"context": "CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)",
"question": "What is the name of the young rider classification when Paolo Tiralongo won?"
} |
### QUESTION
Name the total number of population for 1991 for 9564 for 2011
### CONTEXT
CREATE TABLE table_2562572_5 (population__1991_ VARCHAR, population__2011_ VARCHAR)
### ANSWER
SELECT COUNT(population__1991_) FROM table_2562572_5 WHERE population__2011_ = 9564</s> | {
"answer": "SELECT COUNT(population__1991_) FROM table_2562572_5 WHERE population__2011_ = 9564",
"context": "CREATE TABLE table_2562572_5 (population__1991_ VARCHAR, population__2011_ VARCHAR)",
"question": "Name the total number of population for 1991 for 9564 for 2011"
} |
### QUESTION
What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?
### CONTEXT
CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)
### ANSWER
SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels"</s> | {
"answer": "SELECT austria FROM table_28562675_3 WHERE netherlands = \"Brunssum/Schinnen LL Brunssum\" AND belgium = \"SHAPE and Waterloo LL Brussels\"",
"context": "CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)",
"question": "What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?"
} |
### QUESTION
What digital channel corresponds to virtual channel 23.2?
### CONTEXT
CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
### ANSWER
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "23.2"</s> | {
"answer": "SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = \"23.2\"",
"context": "CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)",
"question": "What digital channel corresponds to virtual channel 23.2?"
} |
### QUESTION
what is the pick when the school is jasper hs (jasper, texas)?
### CONTEXT
CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR)
### ANSWER
SELECT pick FROM table_name_63 WHERE school = "jasper hs (jasper, texas)"</s> | {
"answer": "SELECT pick FROM table_name_63 WHERE school = \"jasper hs (jasper, texas)\"",
"context": "CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR)",
"question": "what is the pick when the school is jasper hs (jasper, texas)?"
} |
### QUESTION
How many no votes were there in the partial public funding of election campaigns legislation?
### CONTEXT
CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)
### ANSWER
SELECT no_votes FROM table_256286_63 WHERE description = "Partial public funding of election campaigns"</s> | {
"answer": "SELECT no_votes FROM table_256286_63 WHERE description = \"Partial public funding of election campaigns\"",
"context": "CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)",
"question": "How many no votes were there in the partial public funding of election campaigns legislation?"
} |
### QUESTION
How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?
### CONTEXT
CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR)
### ANSWER
SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology"</s> | {
"answer": "SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = \"qingdao suncare nutritional technology\"",
"context": "CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR)",
"question": "How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?"
} |
### QUESTION
How many seasons had 16.15 million viewers?
### CONTEXT
CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)
### ANSWER
SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = "16.15"</s> | {
"answer": "SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = \"16.15\"",
"context": "CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)",
"question": "How many seasons had 16.15 million viewers?"
} |
### QUESTION
Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%?
### CONTEXT
CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR)
### ANSWER
SELECT date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%"</s> | {
"answer": "SELECT date FROM table_name_64 WHERE opera = \"5.1%\" AND internet_explorer = \"59.5%\"",
"context": "CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR)",
"question": "Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%?"
} |
### QUESTION
Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event?
### CONTEXT
CREATE TABLE table_name_54 (opponent VARCHAR, res VARCHAR, event VARCHAR)
### ANSWER
SELECT opponent FROM table_name_54 WHERE res = "loss" AND event = "gladiator challenge 87: collision course"</s> | {
"answer": "SELECT opponent FROM table_name_54 WHERE res = \"loss\" AND event = \"gladiator challenge 87: collision course\"",
"context": "CREATE TABLE table_name_54 (opponent VARCHAR, res VARCHAR, event VARCHAR)",
"question": "Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event?"
} |
### QUESTION
For the Cage Combat Fighting Championships: Mayhem, what was the record?
### CONTEXT
CREATE TABLE table_name_13 (record VARCHAR, event VARCHAR)
### ANSWER
SELECT record FROM table_name_13 WHERE event = "cage combat fighting championships: mayhem"</s> | {
"answer": "SELECT record FROM table_name_13 WHERE event = \"cage combat fighting championships: mayhem\"",
"context": "CREATE TABLE table_name_13 (record VARCHAR, event VARCHAR)",
"question": "For the Cage Combat Fighting Championships: Mayhem, what was the record?"
} |
### QUESTION
Who is the chef at Lakes Bar and Grill?
### CONTEXT
CREATE TABLE table_name_21 (chef VARCHAR, restaurant_name VARCHAR)
### ANSWER
SELECT chef FROM table_name_21 WHERE restaurant_name = "lakes bar and grill"</s> | {
"answer": "SELECT chef FROM table_name_21 WHERE restaurant_name = \"lakes bar and grill\"",
"context": "CREATE TABLE table_name_21 (chef VARCHAR, restaurant_name VARCHAR)",
"question": "Who is the chef at Lakes Bar and Grill?"
} |
### QUESTION
What is the minimum number of points for teams averaging 1.412?
### CONTEXT
CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_2865020_5 WHERE average = "1.412"</s> | {
"answer": "SELECT MIN(points) FROM table_2865020_5 WHERE average = \"1.412\"",
"context": "CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR)",
"question": "What is the minimum number of points for teams averaging 1.412?"
} |
### QUESTION
How many u.s. viewers (million) have 6 as the #?
### CONTEXT
CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR)
### ANSWER
SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6</s> | {
"answer": "SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6",
"context": "CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR)",
"question": "How many u.s. viewers (million) have 6 as the #?"
} |
### QUESTION
What is the total number of birth/2012 for January–December 2012 in Kurgan Oblast?
### CONTEXT
CREATE TABLE table_25703_2 (birth_2012 VARCHAR, january_december_2012 VARCHAR)
### ANSWER
SELECT COUNT(birth_2012) FROM table_25703_2 WHERE january_december_2012 = "Kurgan Oblast"</s> | {
"answer": "SELECT COUNT(birth_2012) FROM table_25703_2 WHERE january_december_2012 = \"Kurgan Oblast\"",
"context": "CREATE TABLE table_25703_2 (birth_2012 VARCHAR, january_december_2012 VARCHAR)",
"question": "What is the total number of birth/2012 for January–December 2012 in Kurgan Oblast?"
} |
### QUESTION
What were the total 2012 births when the 2012 deaths were 163?
### CONTEXT
CREATE TABLE table_25703_2 (birth_2012 INTEGER, death_2012 VARCHAR)
### ANSWER
SELECT MIN(birth_2012) FROM table_25703_2 WHERE death_2012 = 163</s> | {
"answer": "SELECT MIN(birth_2012) FROM table_25703_2 WHERE death_2012 = 163",
"context": "CREATE TABLE table_25703_2 (birth_2012 INTEGER, death_2012 VARCHAR)",
"question": "What were the total 2012 births when the 2012 deaths were 163?"
} |
### QUESTION
What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB?
### CONTEXT
CREATE TABLE table_name_98 (time VARCHAR, country VARCHAR, rank VARCHAR, notes VARCHAR)
### ANSWER
SELECT time FROM table_name_98 WHERE rank > 2 AND notes = "fb" AND country = "belarus"</s> | {
"answer": "SELECT time FROM table_name_98 WHERE rank > 2 AND notes = \"fb\" AND country = \"belarus\"",
"context": "CREATE TABLE table_name_98 (time VARCHAR, country VARCHAR, rank VARCHAR, notes VARCHAR)",
"question": "What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB?"
} |
### QUESTION
What is the Time of the Player with a Rank of 1 or 2 and Notes of FA?
### CONTEXT
CREATE TABLE table_name_75 (time VARCHAR, notes VARCHAR, rank VARCHAR)
### ANSWER
SELECT time FROM table_name_75 WHERE notes = "fa" AND rank < 2</s> | {
"answer": "SELECT time FROM table_name_75 WHERE notes = \"fa\" AND rank < 2",
"context": "CREATE TABLE table_name_75 (time VARCHAR, notes VARCHAR, rank VARCHAR)",
"question": "What is the Time of the Player with a Rank of 1 or 2 and Notes of FA?"
} |
### QUESTION
What is the largest amount of ends won when stolen ends were 3?
### CONTEXT
CREATE TABLE table_25718552_2 (Ends INTEGER, stolen_ends VARCHAR)
### ANSWER
SELECT MAX(Ends) AS won FROM table_25718552_2 WHERE stolen_ends = 3</s> | {
"answer": "SELECT MAX(Ends) AS won FROM table_25718552_2 WHERE stolen_ends = 3",
"context": "CREATE TABLE table_25718552_2 (Ends INTEGER, stolen_ends VARCHAR)",
"question": "What is the largest amount of ends won when stolen ends were 3?"
} |
### QUESTION
What was the number of teams in the competition that wynnum manly seagulls won?
### CONTEXT
CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR)
### ANSWER
SELECT MIN(teams) FROM table_25735_1 WHERE winner = "Wynnum Manly Seagulls"</s> | {
"answer": "SELECT MIN(teams) FROM table_25735_1 WHERE winner = \"Wynnum Manly Seagulls\"",
"context": "CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR)",
"question": "What was the number of teams in the competition that wynnum manly seagulls won?"
} |
### QUESTION
What is the total number of electorates in 2009 with a constituency of 193?
### CONTEXT
CREATE TABLE table_name_83 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)
### ANSWER
SELECT COUNT(number_of_electorates__2009_) FROM table_name_83 WHERE constituency_number = "193"</s> | {
"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_83 WHERE constituency_number = \"193\"",
"context": "CREATE TABLE table_name_83 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)",
"question": "What is the total number of electorates in 2009 with a constituency of 193?"
} |
### QUESTION
how many times is the fa cup apps more than 0, the position mf and the league goals 4?
### CONTEXT
CREATE TABLE table_name_52 (total_goals VARCHAR, league_goals VARCHAR, fa_cup_apps VARCHAR, position VARCHAR)
### ANSWER
SELECT COUNT(total_goals) FROM table_name_52 WHERE fa_cup_apps > 0 AND position = "mf" AND league_goals = 4</s> | {
"answer": "SELECT COUNT(total_goals) FROM table_name_52 WHERE fa_cup_apps > 0 AND position = \"mf\" AND league_goals = 4",
"context": "CREATE TABLE table_name_52 (total_goals VARCHAR, league_goals VARCHAR, fa_cup_apps VARCHAR, position VARCHAR)",
"question": "how many times is the fa cup apps more than 0, the position mf and the league goals 4?"
} |
### QUESTION
What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?
### CONTEXT
CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)
### ANSWER
SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = "Indiana" AND player = "Denard Robinson"</s> | {
"answer": "SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = \"Indiana\" AND player = \"Denard Robinson\"",
"context": "CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)",
"question": "What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?"
} |
### QUESTION
If the player is Maake Kemoeatu, what is the int maximum?
### CONTEXT
CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR)
### ANSWER
SELECT MAX(int) FROM table_25773915_11 WHERE player = "Maake Kemoeatu"</s> | {
"answer": "SELECT MAX(int) FROM table_25773915_11 WHERE player = \"Maake Kemoeatu\"",
"context": "CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR)",
"question": "If the player is Maake Kemoeatu, what is the int maximum?"
} |
### QUESTION
How many rushing yards are listed when the passing yards are 244?
### CONTEXT
CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)
### ANSWER
SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244</s> | {
"answer": "SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244",
"context": "CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)",
"question": "How many rushing yards are listed when the passing yards are 244?"
} |
### QUESTION
What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?
### CONTEXT
CREATE TABLE table_name_66 (title VARCHAR, production_num VARCHAR, series VARCHAR, director VARCHAR)
### ANSWER
SELECT title FROM table_name_66 WHERE series = "lt" AND director = "ben hardaway" AND production_num = "6612"</s> | {
"answer": "SELECT title FROM table_name_66 WHERE series = \"lt\" AND director = \"ben hardaway\" AND production_num = \"6612\"",
"context": "CREATE TABLE table_name_66 (title VARCHAR, production_num VARCHAR, series VARCHAR, director VARCHAR)",
"question": "What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?"
} |
### QUESTION
What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46?
### CONTEXT
CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR)
### ANSWER
SELECT eliminated FROM table_28742659_2 WHERE finish = "15th voted Out 9th Jury Member Day 46"</s> | {
"answer": "SELECT eliminated FROM table_28742659_2 WHERE finish = \"15th voted Out 9th Jury Member Day 46\"",
"context": "CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR)",
"question": "What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46?"
} |
### QUESTION
what is the mccain % where obama got 19.3%
### CONTEXT
CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR)
### ANSWER
SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%"</s> | {
"answer": "SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = \"19.3%\"",
"context": "CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR)",
"question": "what is the mccain % where obama got 19.3%"
} |
### QUESTION
How much Enrollment has a School of fort wayne homestead?
### CONTEXT
CREATE TABLE table_name_5 (enrollment INTEGER, school VARCHAR)
### ANSWER
SELECT SUM(enrollment) FROM table_name_5 WHERE school = "fort wayne homestead"</s> | {
"answer": "SELECT SUM(enrollment) FROM table_name_5 WHERE school = \"fort wayne homestead\"",
"context": "CREATE TABLE table_name_5 (enrollment INTEGER, school VARCHAR)",
"question": "How much Enrollment has a School of fort wayne homestead?"
} |
### QUESTION
What is the name of the school in Lucas ?
### CONTEXT
CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR)
### ANSWER
SELECT location FROM table_25987797_1 WHERE school = "Lucas"</s> | {
"answer": "SELECT location FROM table_25987797_1 WHERE school = \"Lucas\"",
"context": "CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR)",
"question": "What is the name of the school in Lucas ? "
} |
### QUESTION
when number of selection is 2 and first team is 1 who are all the player
### CONTEXT
CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR)
### ANSWER
SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2</s> | {
"answer": "SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2",
"context": "CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR)",
"question": "when number of selection is 2 and first team is 1 who are all the player"
} |
### QUESTION
what would be final four mvp maximum when first team is 1
### CONTEXT
CREATE TABLE table_26130295_3 (final_four_mvp INTEGER, first_team VARCHAR)
### ANSWER
SELECT MAX(final_four_mvp) FROM table_26130295_3 WHERE first_team = 1</s> | {
"answer": "SELECT MAX(final_four_mvp) FROM table_26130295_3 WHERE first_team = 1",
"context": "CREATE TABLE table_26130295_3 (final_four_mvp INTEGER, first_team VARCHAR)",
"question": "what would be final four mvp maximum when first team is 1"
} |
### QUESTION
What tournament had Alberta Brianti as an opponent with a score of 6-4 2-6 6-2?
### CONTEXT
CREATE TABLE table_name_96 (tournament VARCHAR, opponent VARCHAR, score VARCHAR)
### ANSWER
SELECT tournament FROM table_name_96 WHERE opponent = "alberta brianti" AND score = "6-4 2-6 6-2"</s> | {
"answer": "SELECT tournament FROM table_name_96 WHERE opponent = \"alberta brianti\" AND score = \"6-4 2-6 6-2\"",
"context": "CREATE TABLE table_name_96 (tournament VARCHAR, opponent VARCHAR, score VARCHAR)",
"question": "What tournament had Alberta Brianti as an opponent with a score of 6-4 2-6 6-2?"
} |
### QUESTION
In the North Central region, what are the regional page #'s?
### CONTEXT
CREATE TABLE table_287659_2 (regional_page__number VARCHAR, region_name VARCHAR)
### ANSWER
SELECT regional_page__number FROM table_287659_2 WHERE region_name = "North Central"</s> | {
"answer": "SELECT regional_page__number FROM table_287659_2 WHERE region_name = \"North Central\"",
"context": "CREATE TABLE table_287659_2 (regional_page__number VARCHAR, region_name VARCHAR)",
"question": "In the North Central region, what are the regional page #'s?"
} |
### QUESTION
Which region has a regional page # of 1-3, 5-7, 9-11, 13-15?
### CONTEXT
CREATE TABLE table_287659_2 (region_name VARCHAR, regional_page__number VARCHAR)
### ANSWER
SELECT region_name FROM table_287659_2 WHERE regional_page__number = "1-3, 5-7, 9-11, 13-15"</s> | {
"answer": "SELECT region_name FROM table_287659_2 WHERE regional_page__number = \"1-3, 5-7, 9-11, 13-15\"",
"context": "CREATE TABLE table_287659_2 (region_name VARCHAR, regional_page__number VARCHAR)",
"question": "Which region has a regional page # of 1-3, 5-7, 9-11, 13-15?"
} |
### QUESTION
What is the party affiliation for senator mark Wagoner?
### CONTEXT
CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)
### ANSWER
SELECT party FROM table_26129220_2 WHERE senator = "Mark Wagoner"</s> | {
"answer": "SELECT party FROM table_26129220_2 WHERE senator = \"Mark Wagoner\"",
"context": "CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)",
"question": "What is the party affiliation for senator mark Wagoner? "
} |
### QUESTION
If the residence is Chagrin falls, who is the representative?
### CONTEXT
CREATE TABLE table_26131768_4 (representative VARCHAR, residence VARCHAR)
### ANSWER
SELECT representative FROM table_26131768_4 WHERE residence = "Chagrin Falls"</s> | {
"answer": "SELECT representative FROM table_26131768_4 WHERE residence = \"Chagrin Falls\"",
"context": "CREATE TABLE table_26131768_4 (representative VARCHAR, residence VARCHAR)",
"question": "If the residence is Chagrin falls, who is the representative?"
} |
### QUESTION
If first elected on 2003 (appt.), when was the term limited?
### CONTEXT
CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR)
### ANSWER
SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = "2003 (Appt.)"</s> | {
"answer": "SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = \"2003 (Appt.)\"",
"context": "CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR)",
"question": "If first elected on 2003 (appt.), when was the term limited?"
} |
### QUESTION
How many times was Scott Oelslager a representative?
### CONTEXT
CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)
### ANSWER
SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = "Scott Oelslager"</s> | {
"answer": "SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = \"Scott Oelslager\"",
"context": "CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)",
"question": "How many times was Scott Oelslager a representative?"
} |
### QUESTION
What is the ioc code when the country is listed as Singapore?
### CONTEXT
CREATE TABLE table_2879165_1 (ioc_code VARCHAR, country VARCHAR)
### ANSWER
SELECT ioc_code FROM table_2879165_1 WHERE country = "Singapore"</s> | {
"answer": "SELECT ioc_code FROM table_2879165_1 WHERE country = \"Singapore\"",
"context": "CREATE TABLE table_2879165_1 (ioc_code VARCHAR, country VARCHAR)",
"question": "What is the ioc code when the country is listed as Singapore?"
} |
### QUESTION
How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?
### CONTEXT
CREATE TABLE table_28768469_7 (game VARCHAR, high_assists VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT COUNT(game) FROM table_28768469_7 WHERE high_assists = "Earl Watson (11)" AND location_attendance = "KeyArena 16,841"</s> | {
"answer": "SELECT COUNT(game) FROM table_28768469_7 WHERE high_assists = \"Earl Watson (11)\" AND location_attendance = \"KeyArena 16,841\"",
"context": "CREATE TABLE table_28768469_7 (game VARCHAR, high_assists VARCHAR, location_attendance VARCHAR)",
"question": "How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?"
} |
### QUESTION
Name the least number in season for brad markowitz, william n. fordes & rené balcer
### CONTEXT
CREATE TABLE table_2618102_1 (no_in_season INTEGER, written_by VARCHAR)
### ANSWER
SELECT MIN(no_in_season) FROM table_2618102_1 WHERE written_by = "Brad Markowitz, William N. Fordes & René Balcer"</s> | {
"answer": "SELECT MIN(no_in_season) FROM table_2618102_1 WHERE written_by = \"Brad Markowitz, William N. Fordes & René Balcer\"",
"context": "CREATE TABLE table_2618102_1 (no_in_season INTEGER, written_by VARCHAR)",
"question": "Name the least number in season for brad markowitz, william n. fordes & rené balcer"
} |
### QUESTION
What types of stations are located in Cebu?
### CONTEXT
CREATE TABLE table_28794440_1 (station_type VARCHAR, location VARCHAR)
### ANSWER
SELECT station_type FROM table_28794440_1 WHERE location = "Cebu"</s> | {
"answer": "SELECT station_type FROM table_28794440_1 WHERE location = \"Cebu\"",
"context": "CREATE TABLE table_28794440_1 (station_type VARCHAR, location VARCHAR)",
"question": "What types of stations are located in Cebu?"
} |
### QUESTION
What is the football conference for Henniker, New Hampshire>?
### CONTEXT
CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR)
### ANSWER
SELECT football_conference FROM table_261927_2 WHERE location = "Henniker, New Hampshire"</s> | {
"answer": "SELECT football_conference FROM table_261927_2 WHERE location = \"Henniker, New Hampshire\"",
"context": "CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR)",
"question": "What is the football conference for Henniker, New Hampshire>?"
} |
### QUESTION
What venue did the game on september 5, 1998 take place at?
### CONTEXT
CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR)
### ANSWER
SELECT venue FROM table_name_71 WHERE date = "september 5, 1998"</s> | {
"answer": "SELECT venue FROM table_name_71 WHERE date = \"september 5, 1998\"",
"context": "CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR)",
"question": "What venue did the game on september 5, 1998 take place at?"
} |
### QUESTION
Which match was the final score 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?
### CONTEXT
CREATE TABLE table_26202812_7 (no VARCHAR, score_in_the_final VARCHAR)
### ANSWER
SELECT no FROM table_26202812_7 WHERE score_in_the_final = "7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)"</s> | {
"answer": "SELECT no FROM table_26202812_7 WHERE score_in_the_final = \"7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)\"",
"context": "CREATE TABLE table_26202812_7 (no VARCHAR, score_in_the_final VARCHAR)",
"question": "Which match was the final score 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?"
} |
### QUESTION
How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?
### CONTEXT
CREATE TABLE table_28793672_1 (golden_tickets VARCHAR, callback_venue VARCHAR)
### ANSWER
SELECT COUNT(golden_tickets) FROM table_28793672_1 WHERE callback_venue = "RCTI Studio, Jakarta"</s> | {
"answer": "SELECT COUNT(golden_tickets) FROM table_28793672_1 WHERE callback_venue = \"RCTI Studio, Jakarta\"",
"context": "CREATE TABLE table_28793672_1 (golden_tickets VARCHAR, callback_venue VARCHAR)",
"question": "How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?"
} |
### QUESTION
What event type had BODY CMAS in 1980 and underwater hockey?
### CONTEXT
CREATE TABLE table_name_57 (event_type VARCHAR, sport VARCHAR, body VARCHAR, year VARCHAR)
### ANSWER
SELECT event_type FROM table_name_57 WHERE body = "cmas" AND year = "1980" AND sport = "underwater hockey"</s> | {
"answer": "SELECT event_type FROM table_name_57 WHERE body = \"cmas\" AND year = \"1980\" AND sport = \"underwater hockey\"",
"context": "CREATE TABLE table_name_57 (event_type VARCHAR, sport VARCHAR, body VARCHAR, year VARCHAR)",
"question": "What event type had BODY CMAS in 1980 and underwater hockey?"
} |
### QUESTION
What body is at the World Championship for Underwater Target shooting?
### CONTEXT
CREATE TABLE table_name_12 (body VARCHAR, event_type VARCHAR, sport VARCHAR)
### ANSWER
SELECT body FROM table_name_12 WHERE event_type = "world championship" AND sport = "underwater target shooting"</s> | {
"answer": "SELECT body FROM table_name_12 WHERE event_type = \"world championship\" AND sport = \"underwater target shooting\"",
"context": "CREATE TABLE table_name_12 (body VARCHAR, event_type VARCHAR, sport VARCHAR)",
"question": "What body is at the World Championship for Underwater Target shooting?"
} |
### QUESTION
What is the theme for Audition week?
### CONTEXT
CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR)
### ANSWER
SELECT theme FROM table_26250176_1 WHERE week__number = "Audition"</s> | {
"answer": "SELECT theme FROM table_26250176_1 WHERE week__number = \"Audition\"",
"context": "CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR)",
"question": "What is the theme for Audition week?"
} |
### QUESTION
Who is the player when the economy is 6.14?
### CONTEXT
CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)
### ANSWER
SELECT player FROM table_28846752_9 WHERE economy = "6.14"</s> | {
"answer": "SELECT player FROM table_28846752_9 WHERE economy = \"6.14\"",
"context": "CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)",
"question": "Who is the player when the economy is 6.14?"
} |
### QUESTION
Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?
### CONTEXT
CREATE TABLE table_name_61 (parallel_bars INTEGER, country VARCHAR, vault VARCHAR)
### ANSWER
SELECT MAX(parallel_bars) FROM table_name_61 WHERE country = "united states" AND vault < 63.85</s> | {
"answer": "SELECT MAX(parallel_bars) FROM table_name_61 WHERE country = \"united states\" AND vault < 63.85",
"context": "CREATE TABLE table_name_61 (parallel_bars INTEGER, country VARCHAR, vault VARCHAR)",
"question": "Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?"
} |
### QUESTION
In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?
### CONTEXT
CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)
### ANSWER
SELECT stage FROM table_28853064_15 WHERE team_classification = "EPM-UNE" AND mountains_classification = "Oscar Solis" AND winner = "Jaime Vergara"</s> | {
"answer": "SELECT stage FROM table_28853064_15 WHERE team_classification = \"EPM-UNE\" AND mountains_classification = \"Oscar Solis\" AND winner = \"Jaime Vergara\"",
"context": "CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)",
"question": "In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?"
} |
### QUESTION
Who directed the episode that aired November 21, 2003?
### CONTEXT
CREATE TABLE table_28859177_2 (directed_by VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT directed_by FROM table_28859177_2 WHERE original_air_date = "November 21, 2003"</s> | {
"answer": "SELECT directed_by FROM table_28859177_2 WHERE original_air_date = \"November 21, 2003\"",
"context": "CREATE TABLE table_28859177_2 (directed_by VARCHAR, original_air_date VARCHAR)",
"question": "Who directed the episode that aired November 21, 2003?"
} |
### QUESTION
How many Goals have Years at club of 1961–1966, and a Debut year larger than 1961?
### CONTEXT
CREATE TABLE table_name_9 (goals VARCHAR, years_at_club VARCHAR, debut_year VARCHAR)
### ANSWER
SELECT COUNT(goals) FROM table_name_9 WHERE years_at_club = "1961–1966" AND debut_year > 1961</s> | {
"answer": "SELECT COUNT(goals) FROM table_name_9 WHERE years_at_club = \"1961–1966\" AND debut_year > 1961",
"context": "CREATE TABLE table_name_9 (goals VARCHAR, years_at_club VARCHAR, debut_year VARCHAR)",
"question": "How many Goals have Years at club of 1961–1966, and a Debut year larger than 1961?"
} |
### QUESTION
how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are
### CONTEXT
CREATE TABLE table_2889300_6 (drumset_name VARCHAR, drumstand__oftenoptional_ VARCHAR, tom_tom_pads VARCHAR)
### ANSWER
SELECT COUNT(drumset_name) FROM table_2889300_6 WHERE drumstand__oftenoptional_ = "HD-1/3Stand" AND tom_tom_pads = "3xCloth-Head"</s> | {
"answer": "SELECT COUNT(drumset_name) FROM table_2889300_6 WHERE drumstand__oftenoptional_ = \"HD-1/3Stand\" AND tom_tom_pads = \"3xCloth-Head\"",
"context": "CREATE TABLE table_2889300_6 (drumset_name VARCHAR, drumstand__oftenoptional_ VARCHAR, tom_tom_pads VARCHAR)",
"question": "how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are"
} |
### QUESTION
How many times was the viewer target group 0.63?
### CONTEXT
CREATE TABLE table_2639433_4 (market_share__target_group_14_49_ VARCHAR, viewers__in_millions_target_group_14_49_ VARCHAR)
### ANSWER
SELECT COUNT(market_share__target_group_14_49_) FROM table_2639433_4 WHERE viewers__in_millions_target_group_14_49_ = "0.63"</s> | {
"answer": "SELECT COUNT(market_share__target_group_14_49_) FROM table_2639433_4 WHERE viewers__in_millions_target_group_14_49_ = \"0.63\"",
"context": "CREATE TABLE table_2639433_4 (market_share__target_group_14_49_ VARCHAR, viewers__in_millions_target_group_14_49_ VARCHAR)",
"question": "How many times was the viewer target group 0.63?"
} |
### QUESTION
How many times is avg/g 2?
### CONTEXT
CREATE TABLE table_name_82 (receptions VARCHAR, avg_g VARCHAR)
### ANSWER
SELECT COUNT(receptions) FROM table_name_82 WHERE avg_g = 2</s> | {
"answer": "SELECT COUNT(receptions) FROM table_name_82 WHERE avg_g = 2",
"context": "CREATE TABLE table_name_82 (receptions VARCHAR, avg_g VARCHAR)",
"question": "How many times is avg/g 2?"
} |
### QUESTION
How many dates did Daniel Ruiz win the Spanish Grand Prix?
### CONTEXT
CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz"</s> | {
"answer": "SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = \"Spanish grand_prix\" AND race_winner = \"Daniel Ruiz\"",
"context": "CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)",
"question": "How many dates did Daniel Ruiz win the Spanish Grand Prix?"
} |
### QUESTION
How many entries are in the ranking for jacqueline kohl?
### CONTEXT
CREATE TABLE table_26427332_17 (place VARCHAR, contestant VARCHAR)
### ANSWER
SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = "Jacqueline Kohl"</s> | {
"answer": "SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = \"Jacqueline Kohl\"",
"context": "CREATE TABLE table_26427332_17 (place VARCHAR, contestant VARCHAR)",
"question": "How many entries are in the ranking for jacqueline kohl?"
} |
### QUESTION
Which Airing date has a Number of episodes larger than 20, and a Genre of modern drama?
### CONTEXT
CREATE TABLE table_name_39 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)
### ANSWER
SELECT airing_date FROM table_name_39 WHERE number_of_episodes > 20 AND genre = "modern drama"</s> | {
"answer": "SELECT airing_date FROM table_name_39 WHERE number_of_episodes > 20 AND genre = \"modern drama\"",
"context": "CREATE TABLE table_name_39 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR)",
"question": "Which Airing date has a Number of episodes larger than 20, and a Genre of modern drama?"
} |
### QUESTION
How many episodes were directed by Arlene Sanford?
### CONTEXT
CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = "Arlene Sanford"</s> | {
"answer": "SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = \"Arlene Sanford\"",
"context": "CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR)",
"question": "How many episodes were directed by Arlene Sanford?"
} |
### QUESTION
who is the grand finalist when the grand finalists are jonathan loh, peterson poon, nathan santos?
### CONTEXT
CREATE TABLE table_name_26 (grand_finalist VARCHAR, grand_finalists VARCHAR)
### ANSWER
SELECT grand_finalist FROM table_name_26 WHERE grand_finalists = "jonathan loh, peterson poon, nathan santos"</s> | {
"answer": "SELECT grand_finalist FROM table_name_26 WHERE grand_finalists = \"jonathan loh, peterson poon, nathan santos\"",
"context": "CREATE TABLE table_name_26 (grand_finalist VARCHAR, grand_finalists VARCHAR)",
"question": "who is the grand finalist when the grand finalists are jonathan loh, peterson poon, nathan santos?"
} |
### QUESTION
Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0?
### CONTEXT
CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_2897457_3 WHERE position = "Defence" AND nationality = "Canada" AND pick__number < 61.0</s> | {
"answer": "SELECT college_junior_club_team FROM table_2897457_3 WHERE position = \"Defence\" AND nationality = \"Canada\" AND pick__number < 61.0",
"context": "CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR)",
"question": "Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0?"
} |
### QUESTION
What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?
### CONTEXT
CREATE TABLE table_name_81 (l_100km_combined INTEGER, mpg_uk_extra_urban VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR)
### ANSWER
SELECT AVG(l_100km_combined) FROM table_name_81 WHERE l_100km_urban__cold_ = 13.9 AND mpg_uk_combined > 28.5 AND mpg_uk_extra_urban < 38.7</s> | {
"answer": "SELECT AVG(l_100km_combined) FROM table_name_81 WHERE l_100km_urban__cold_ = 13.9 AND mpg_uk_combined > 28.5 AND mpg_uk_extra_urban < 38.7",
"context": "CREATE TABLE table_name_81 (l_100km_combined INTEGER, mpg_uk_extra_urban VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR)",
"question": "What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?"
} |
### QUESTION
What's the least mpg-UK combined when the mpg-UK urban is 25.4, the L/100km extra urban is less than 6.9 and the L/100km urban is more than 11.1?
### CONTEXT
CREATE TABLE table_name_42 (mpg_uk_combined INTEGER, l_100km_urban__cold_ VARCHAR, mpg_uk_urban__cold_ VARCHAR, l_100km_extra_urban VARCHAR)
### ANSWER
SELECT MIN(mpg_uk_combined) FROM table_name_42 WHERE mpg_uk_urban__cold_ = 25.4 AND l_100km_extra_urban < 6.9 AND l_100km_urban__cold_ > 11.1</s> | {
"answer": "SELECT MIN(mpg_uk_combined) FROM table_name_42 WHERE mpg_uk_urban__cold_ = 25.4 AND l_100km_extra_urban < 6.9 AND l_100km_urban__cold_ > 11.1",
"context": "CREATE TABLE table_name_42 (mpg_uk_combined INTEGER, l_100km_urban__cold_ VARCHAR, mpg_uk_urban__cold_ VARCHAR, l_100km_extra_urban VARCHAR)",
"question": "What's the least mpg-UK combined when the mpg-UK urban is 25.4, the L/100km extra urban is less than 6.9 and the L/100km urban is more than 11.1?"
} |
### QUESTION
What's the CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5?
### CONTEXT
CREATE TABLE table_name_20 (co_2_g_km VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, fuel_type VARCHAR, manufacturer VARCHAR)
### ANSWER
SELECT COUNT(co_2_g_km) FROM table_name_20 WHERE fuel_type = "diesel" AND manufacturer = "fiat" AND l_100km_urban__cold_ > 6.3 AND mpg_uk_combined = 43.5</s> | {
"answer": "SELECT COUNT(co_2_g_km) FROM table_name_20 WHERE fuel_type = \"diesel\" AND manufacturer = \"fiat\" AND l_100km_urban__cold_ > 6.3 AND mpg_uk_combined = 43.5",
"context": "CREATE TABLE table_name_20 (co_2_g_km VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, fuel_type VARCHAR, manufacturer VARCHAR)",
"question": "What's the CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5?"
} |
### QUESTION
What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7?
### CONTEXT
CREATE TABLE table_name_52 (l_100km_extra_urban VARCHAR, mpg_us_combined VARCHAR, fuel_type VARCHAR, mpg_uk_combined VARCHAR, l_100km_combined VARCHAR)
### ANSWER
SELECT COUNT(l_100km_extra_urban) FROM table_name_52 WHERE mpg_uk_combined > 19.2 AND l_100km_combined < 5.7 AND fuel_type = "diesel" AND mpg_us_combined < 50</s> | {
"answer": "SELECT COUNT(l_100km_extra_urban) FROM table_name_52 WHERE mpg_uk_combined > 19.2 AND l_100km_combined < 5.7 AND fuel_type = \"diesel\" AND mpg_us_combined < 50",
"context": "CREATE TABLE table_name_52 (l_100km_extra_urban VARCHAR, mpg_us_combined VARCHAR, fuel_type VARCHAR, mpg_uk_combined VARCHAR, l_100km_combined VARCHAR)",
"question": "What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7?"
} |
### QUESTION
What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?
### CONTEXT
CREATE TABLE table_name_53 (engine_capacity INTEGER, mpg_us_urban VARCHAR, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)
### ANSWER
SELECT SUM(engine_capacity) FROM table_name_53 WHERE mpg_uk_urban__cold_ < 12.2 AND mpg_uk_extra_urban < 18.8 AND mpg_us_urban < 7.2</s> | {
"answer": "SELECT SUM(engine_capacity) FROM table_name_53 WHERE mpg_uk_urban__cold_ < 12.2 AND mpg_uk_extra_urban < 18.8 AND mpg_us_urban < 7.2",
"context": "CREATE TABLE table_name_53 (engine_capacity INTEGER, mpg_us_urban VARCHAR, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)",
"question": "What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?"
} |
### QUESTION
What pick number was the Boston Bruins selection for defence?
### CONTEXT
CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR)
### ANSWER
SELECT pick__number FROM table_2897457_8 WHERE position = "Defence" AND nhl_team = "Boston Bruins"</s> | {
"answer": "SELECT pick__number FROM table_2897457_8 WHERE position = \"Defence\" AND nhl_team = \"Boston Bruins\"",
"context": "CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR)",
"question": "What pick number was the Boston Bruins selection for defence?"
} |
### QUESTION
Which player is the centre for the Detroit Red Wings?
### CONTEXT
CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)
### ANSWER
SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings"</s> | {
"answer": "SELECT player FROM table_2897457_4 WHERE position = \"Centre\" AND nhl_team = \"Detroit Red Wings\"",
"context": "CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)",
"question": "Which player is the centre for the Detroit Red Wings?"
} |
### QUESTION
How many first elected years are provided for Thomas P. Moore?
### CONTEXT
CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)
### ANSWER
SELECT COUNT(first_elected) FROM table_2668243_8 WHERE incumbent = "Thomas P. Moore"</s> | {
"answer": "SELECT COUNT(first_elected) FROM table_2668243_8 WHERE incumbent = \"Thomas P. Moore\"",
"context": "CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)",
"question": "How many first elected years are provided for Thomas P. Moore?"
} |
### QUESTION
What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?
### CONTEXT
CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR)
### ANSWER
SELECT goals_for FROM table_name_44 WHERE lost = "involuntary suspension of season (hurricane rita)"</s> | {
"answer": "SELECT goals_for FROM table_name_44 WHERE lost = \"involuntary suspension of season (hurricane rita)\"",
"context": "CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR)",
"question": "What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?"
} |
### QUESTION
What was the first elected year that featured incumbent andrew r. govan?
### CONTEXT
CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR)
### ANSWER
SELECT first_elected FROM table_2668264_22 WHERE incumbent = "Andrew R. Govan"</s> | {
"answer": "SELECT first_elected FROM table_2668264_22 WHERE incumbent = \"Andrew R. Govan\"",
"context": "CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR)",
"question": "What was the first elected year that featured incumbent andrew r. govan?"
} |
### QUESTION
What location did david mccann receive a siver and morgan fox win the gold?
### CONTEXT
CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR)
### ANSWER
SELECT location FROM table_name_38 WHERE silver = "david mccann" AND gold = "morgan fox"</s> | {
"answer": "SELECT location FROM table_name_38 WHERE silver = \"david mccann\" AND gold = \"morgan fox\"",
"context": "CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR)",
"question": "What location did david mccann receive a siver and morgan fox win the gold?"
} |
### QUESTION
Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?
### CONTEXT
CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)
### ANSWER
SELECT result FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%"</s> | {
"answer": "SELECT result FROM table_2668336_17 WHERE candidates = \"Charles Fisher (DR) 65.1% W. Jones (F) 34.9%\"",
"context": "CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)",
"question": "Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.