text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
If Adam Voges had less than 28.5 Ovrs, what are his highest Wkts?
### CONTEXT
CREATE TABLE table_name_58 (wkts INTEGER, ovrs VARCHAR, player VARCHAR)
### ANSWER
SELECT MAX(wkts) FROM table_name_58 WHERE ovrs < 28.5 AND player = "adam voges"</s> | {
"answer": "SELECT MAX(wkts) FROM table_name_58 WHERE ovrs < 28.5 AND player = \"adam voges\"",
"context": "CREATE TABLE table_name_58 (wkts INTEGER, ovrs VARCHAR, player VARCHAR)",
"question": "If Adam Voges had less than 28.5 Ovrs, what are his highest Wkts?"
} |
### QUESTION
What is the average pass def that has green bay packers as the team, 62 as the solo and sacks less than 2?
### CONTEXT
CREATE TABLE table_name_63 (pass_def INTEGER, sacks VARCHAR, team VARCHAR, solo VARCHAR)
### ANSWER
SELECT AVG(pass_def) FROM table_name_63 WHERE team = "green bay packers" AND solo = 62 AND sacks < 2</s> | {
"answer": "SELECT AVG(pass_def) FROM table_name_63 WHERE team = \"green bay packers\" AND solo = 62 AND sacks < 2",
"context": "CREATE TABLE table_name_63 (pass_def INTEGER, sacks VARCHAR, team VARCHAR, solo VARCHAR)",
"question": "What is the average pass def that has green bay packers as the team, 62 as the solo and sacks less than 2?"
} |
### QUESTION
What channel has an operator of ivptc?
### CONTEXT
CREATE TABLE table_name_1 (programming VARCHAR, operator VARCHAR)
### ANSWER
SELECT programming FROM table_name_1 WHERE operator = "ivptc"</s> | {
"answer": "SELECT programming FROM table_name_1 WHERE operator = \"ivptc\"",
"context": "CREATE TABLE table_name_1 (programming VARCHAR, operator VARCHAR)",
"question": "What channel has an operator of ivptc?"
} |
### QUESTION
What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?
### CONTEXT
CREATE TABLE table_name_77 (total INTEGER, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_77 WHERE silver > 6 AND bronze = 6 AND gold < 16</s> | {
"answer": "SELECT MIN(total) FROM table_name_77 WHERE silver > 6 AND bronze = 6 AND gold < 16",
"context": "CREATE TABLE table_name_77 (total INTEGER, gold VARCHAR, silver VARCHAR, bronze VARCHAR)",
"question": "What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?"
} |
### QUESTION
Name of xue hanqin has what highest term ending?
### CONTEXT
CREATE TABLE table_name_89 (term_ending INTEGER, name VARCHAR)
### ANSWER
SELECT MAX(term_ending) FROM table_name_89 WHERE name = "xue hanqin"</s> | {
"answer": "SELECT MAX(term_ending) FROM table_name_89 WHERE name = \"xue hanqin\"",
"context": "CREATE TABLE table_name_89 (term_ending INTEGER, name VARCHAR)",
"question": "Name of xue hanqin has what highest term ending?"
} |
### QUESTION
When was radek necas with less than 2.04 height born?
### CONTEXT
CREATE TABLE table_name_97 (year_born INTEGER, player VARCHAR, height VARCHAR)
### ANSWER
SELECT AVG(year_born) FROM table_name_97 WHERE player = "radek necas" AND height < 2.04</s> | {
"answer": "SELECT AVG(year_born) FROM table_name_97 WHERE player = \"radek necas\" AND height < 2.04",
"context": "CREATE TABLE table_name_97 (year_born INTEGER, player VARCHAR, height VARCHAR)",
"question": "When was radek necas with less than 2.04 height born?"
} |
### QUESTION
Who was the captain of the away team at Adelaide Oval?
### CONTEXT
CREATE TABLE table_name_84 (away_captain VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_captain FROM table_name_84 WHERE venue = "adelaide oval"</s> | {
"answer": "SELECT away_captain FROM table_name_84 WHERE venue = \"adelaide oval\"",
"context": "CREATE TABLE table_name_84 (away_captain VARCHAR, venue VARCHAR)",
"question": "Who was the captain of the away team at Adelaide Oval?"
} |
### QUESTION
what country is john nielsen from
### CONTEXT
CREATE TABLE table_name_10 (country VARCHAR, driver VARCHAR)
### ANSWER
SELECT country FROM table_name_10 WHERE driver = "john nielsen"</s> | {
"answer": "SELECT country FROM table_name_10 WHERE driver = \"john nielsen\"",
"context": "CREATE TABLE table_name_10 (country VARCHAR, driver VARCHAR)",
"question": "what country is john nielsen from"
} |
### QUESTION
What is the Propulsion for the model offered in 2003-2004 by neoplan usa?
### CONTEXT
CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)
### ANSWER
SELECT propulsion FROM table_name_68 WHERE order_year = "2003-2004" AND manufacturer = "neoplan usa"</s> | {
"answer": "SELECT propulsion FROM table_name_68 WHERE order_year = \"2003-2004\" AND manufacturer = \"neoplan usa\"",
"context": "CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)",
"question": "What is the Propulsion for the model offered in 2003-2004 by neoplan usa?"
} |
### QUESTION
What was the final score of the player from Inglewood, California?
### CONTEXT
CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR)
### ANSWER
SELECT score FROM table_name_14 WHERE city = "inglewood, california"</s> | {
"answer": "SELECT score FROM table_name_14 WHERE city = \"inglewood, california\"",
"context": "CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR)",
"question": "What was the final score of the player from Inglewood, California?"
} |
### QUESTION
Who was the previous champion of the title won on July 7, 2010?
### CONTEXT
CREATE TABLE table_name_98 (previous_champion_s_ VARCHAR, date_won VARCHAR)
### ANSWER
SELECT previous_champion_s_ FROM table_name_98 WHERE date_won = "july 7, 2010"</s> | {
"answer": "SELECT previous_champion_s_ FROM table_name_98 WHERE date_won = \"july 7, 2010\"",
"context": "CREATE TABLE table_name_98 (previous_champion_s_ VARCHAR, date_won VARCHAR)",
"question": "Who was the previous champion of the title won on July 7, 2010?"
} |
### QUESTION
Which Founded has a Club of tri-city storm and a Titles larger than 1?
### CONTEXT
CREATE TABLE table_name_68 (founded INTEGER, club VARCHAR, titles VARCHAR)
### ANSWER
SELECT SUM(founded) FROM table_name_68 WHERE club = "tri-city storm" AND titles > 1</s> | {
"answer": "SELECT SUM(founded) FROM table_name_68 WHERE club = \"tri-city storm\" AND titles > 1",
"context": "CREATE TABLE table_name_68 (founded INTEGER, club VARCHAR, titles VARCHAR)",
"question": "Which Founded has a Club of tri-city storm and a Titles larger than 1?"
} |
### QUESTION
Which Founded has a League of women's flat track derby association, and a Club of omaha rollergirls?
### CONTEXT
CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)
### ANSWER
SELECT AVG(founded) FROM table_name_14 WHERE league = "women's flat track derby association" AND club = "omaha rollergirls"</s> | {
"answer": "SELECT AVG(founded) FROM table_name_14 WHERE league = \"women's flat track derby association\" AND club = \"omaha rollergirls\"",
"context": "CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)",
"question": "Which Founded has a League of women's flat track derby association, and a Club of omaha rollergirls?"
} |
### QUESTION
What was the score at Bernardo O'Higgins Cup on May 7, 1961?
### CONTEXT
CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_94 WHERE competition = "bernardo o'higgins cup" AND date = "may 7, 1961"</s> | {
"answer": "SELECT score FROM table_name_94 WHERE competition = \"bernardo o'higgins cup\" AND date = \"may 7, 1961\"",
"context": "CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)",
"question": "What was the score at Bernardo O'Higgins Cup on May 7, 1961?"
} |
### QUESTION
What grid has an average time of +22.505 and laps larger than 23?
### CONTEXT
CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_7 WHERE time = "+22.505" AND laps > 23</s> | {
"answer": "SELECT AVG(grid) FROM table_name_7 WHERE time = \"+22.505\" AND laps > 23",
"context": "CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)",
"question": "What grid has an average time of +22.505 and laps larger than 23?"
} |
### QUESTION
What is the total dist with Johnny Murtagh and less than 26 runners?
### CONTEXT
CREATE TABLE table_name_12 (dist__f_ INTEGER, jockey VARCHAR, runners VARCHAR)
### ANSWER
SELECT SUM(dist__f_) FROM table_name_12 WHERE jockey = "johnny murtagh" AND runners < 26</s> | {
"answer": "SELECT SUM(dist__f_) FROM table_name_12 WHERE jockey = \"johnny murtagh\" AND runners < 26",
"context": "CREATE TABLE table_name_12 (dist__f_ INTEGER, jockey VARCHAR, runners VARCHAR)",
"question": "What is the total dist with Johnny Murtagh and less than 26 runners?"
} |
### QUESTION
What was the score when Mark parterned with lorenzo manta?
### CONTEXT
CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)
### ANSWER
SELECT score FROM table_name_19 WHERE partner = "lorenzo manta"</s> | {
"answer": "SELECT score FROM table_name_19 WHERE partner = \"lorenzo manta\"",
"context": "CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)",
"question": "What was the score when Mark parterned with lorenzo manta?"
} |
### QUESTION
What place in the United States has a To par of e?
### CONTEXT
CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR)
### ANSWER
SELECT place FROM table_name_39 WHERE country = "united states" AND to_par = "e"</s> | {
"answer": "SELECT place FROM table_name_39 WHERE country = \"united states\" AND to_par = \"e\"",
"context": "CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR)",
"question": "What place in the United States has a To par of e?"
} |
### QUESTION
Where did the Bruins play Iowa State?
### CONTEXT
CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_58 WHERE opponent = "iowa state"</s> | {
"answer": "SELECT location FROM table_name_58 WHERE opponent = \"iowa state\"",
"context": "CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)",
"question": "Where did the Bruins play Iowa State?"
} |
### QUESTION
How many people attended the game on May 10?
### CONTEXT
CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_44 WHERE date = "may 10"</s> | {
"answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE date = \"may 10\"",
"context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)",
"question": "How many people attended the game on May 10?"
} |
### QUESTION
How many "goals against" were scored at the club that had a "goal difference" of 0, 12 wins, and more than 44 goals?
### CONTEXT
CREATE TABLE table_name_13 (goals_against VARCHAR, goals_for VARCHAR, goal_difference VARCHAR, wins VARCHAR)
### ANSWER
SELECT COUNT(goals_against) FROM table_name_13 WHERE goal_difference = 0 AND wins = 12 AND goals_for > 44</s> | {
"answer": "SELECT COUNT(goals_against) FROM table_name_13 WHERE goal_difference = 0 AND wins = 12 AND goals_for > 44",
"context": "CREATE TABLE table_name_13 (goals_against VARCHAR, goals_for VARCHAR, goal_difference VARCHAR, wins VARCHAR)",
"question": "How many \"goals against\" were scored at the club that had a \"goal difference\" of 0, 12 wins, and more than 44 goals?"
} |
### QUESTION
Which Round is the average one that has a Pick # larger than 26, and a Position of defensive back?
### CONTEXT
CREATE TABLE table_name_52 (round INTEGER, pick__number VARCHAR, position VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_52 WHERE pick__number > 26 AND position = "defensive back"</s> | {
"answer": "SELECT AVG(round) FROM table_name_52 WHERE pick__number > 26 AND position = \"defensive back\"",
"context": "CREATE TABLE table_name_52 (round INTEGER, pick__number VARCHAR, position VARCHAR)",
"question": "Which Round is the average one that has a Pick # larger than 26, and a Position of defensive back?"
} |
### QUESTION
Which sport did the United States win?
### CONTEXT
CREATE TABLE table_name_29 (sport VARCHAR, nation_represented VARCHAR)
### ANSWER
SELECT sport FROM table_name_29 WHERE nation_represented = "united states"</s> | {
"answer": "SELECT sport FROM table_name_29 WHERE nation_represented = \"united states\"",
"context": "CREATE TABLE table_name_29 (sport VARCHAR, nation_represented VARCHAR)",
"question": "Which sport did the United States win?"
} |
### QUESTION
Median household income of $40,340, and a Number of households smaller than 64,767 is what average population?
### CONTEXT
CREATE TABLE table_name_54 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)
### ANSWER
SELECT AVG(population) FROM table_name_54 WHERE median_household_income = "$40,340" AND number_of_households < 64 OFFSET 767</s> | {
"answer": "SELECT AVG(population) FROM table_name_54 WHERE median_household_income = \"$40,340\" AND number_of_households < 64 OFFSET 767",
"context": "CREATE TABLE table_name_54 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)",
"question": "Median household income of $40,340, and a Number of households smaller than 64,767 is what average population?"
} |
### QUESTION
What was the date of the Arden Street Oval game?
### CONTEXT
CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_59 WHERE venue = "arden street oval"</s> | {
"answer": "SELECT date FROM table_name_59 WHERE venue = \"arden street oval\"",
"context": "CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)",
"question": "What was the date of the Arden Street Oval game?"
} |
### QUESTION
What was the area in Glenella with a population of 522 in 2011?
### CONTEXT
CREATE TABLE table_name_24 (area__km²_ INTEGER, name VARCHAR, population__2011_ VARCHAR)
### ANSWER
SELECT AVG(area__km²_) FROM table_name_24 WHERE name = "glenella" AND population__2011_ < 522</s> | {
"answer": "SELECT AVG(area__km²_) FROM table_name_24 WHERE name = \"glenella\" AND population__2011_ < 522",
"context": "CREATE TABLE table_name_24 (area__km²_ INTEGER, name VARCHAR, population__2011_ VARCHAR)",
"question": "What was the area in Glenella with a population of 522 in 2011?"
} |
### QUESTION
How many US events did jason bennett win?
### CONTEXT
CREATE TABLE table_name_83 (events_won__us_series_ INTEGER, name VARCHAR)
### ANSWER
SELECT AVG(events_won__us_series_) FROM table_name_83 WHERE name = "jason bennett"</s> | {
"answer": "SELECT AVG(events_won__us_series_) FROM table_name_83 WHERE name = \"jason bennett\"",
"context": "CREATE TABLE table_name_83 (events_won__us_series_ INTEGER, name VARCHAR)",
"question": "How many US events did jason bennett win?"
} |
### QUESTION
What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?
### CONTEXT
CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_10 WHERE tied = "4" AND goals_for < 257 AND games > 72</s> | {
"answer": "SELECT MAX(points) FROM table_name_10 WHERE tied = \"4\" AND goals_for < 257 AND games > 72",
"context": "CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)",
"question": "What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?"
} |
### QUESTION
What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses?
### CONTEXT
CREATE TABLE table_name_22 (played VARCHAR, lost VARCHAR, first_game VARCHAR, percentage VARCHAR)
### ANSWER
SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = "22.22%" AND lost > 7</s> | {
"answer": "SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = \"22.22%\" AND lost > 7",
"context": "CREATE TABLE table_name_22 (played VARCHAR, lost VARCHAR, first_game VARCHAR, percentage VARCHAR)",
"question": "What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses?"
} |
### QUESTION
Which University students and adults have minimum diameter of Sakigawa for female gender?
### CONTEXT
CREATE TABLE table_name_86 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, specification VARCHAR, gender VARCHAR)
### ANSWER
SELECT university_students_and_adults__18yrs + _ FROM table_name_86 WHERE specification = "minimum diameter of sakigawa" AND gender = "female"</s> | {
"answer": "SELECT university_students_and_adults__18yrs + _ FROM table_name_86 WHERE specification = \"minimum diameter of sakigawa\" AND gender = \"female\"",
"context": "CREATE TABLE table_name_86 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, specification VARCHAR, gender VARCHAR)",
"question": "Which University students and adults have minimum diameter of Sakigawa for female gender?"
} |
### QUESTION
Which gender is associated with University students and adults of 25mm?
### CONTEXT
CREATE TABLE table_name_19 (gender VARCHAR, university_students_and_adults__18yrs VARCHAR, _ VARCHAR)
### ANSWER
SELECT gender FROM table_name_19 WHERE university_students_and_adults__18yrs + _ = "25mm"</s> | {
"answer": "SELECT gender FROM table_name_19 WHERE university_students_and_adults__18yrs + _ = \"25mm\"",
"context": "CREATE TABLE table_name_19 (gender VARCHAR, university_students_and_adults__18yrs VARCHAR, _ VARCHAR)",
"question": "Which gender is associated with University students and adults of 25mm?"
} |
### QUESTION
What value for university students and adult goes with male gender for minimum weight?
### CONTEXT
CREATE TABLE table_name_57 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, gender VARCHAR, specification VARCHAR)
### ANSWER
SELECT university_students_and_adults__18yrs + _ FROM table_name_57 WHERE gender = "male" AND specification = "minimum weight"</s> | {
"answer": "SELECT university_students_and_adults__18yrs + _ FROM table_name_57 WHERE gender = \"male\" AND specification = \"minimum weight\"",
"context": "CREATE TABLE table_name_57 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, gender VARCHAR, specification VARCHAR)",
"question": "What value for university students and adult goes with male gender for minimum weight?"
} |
### QUESTION
What type of song is larger than 8 and named 實情?
### CONTEXT
CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR)
### ANSWER
SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = "實情"</s> | {
"answer": "SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = \"實情\"",
"context": "CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR)",
"question": "What type of song is larger than 8 and named 實情?"
} |
### QUESTION
Name the total number of start when finish is less than 4
### CONTEXT
CREATE TABLE table_name_21 (start VARCHAR, finish INTEGER)
### ANSWER
SELECT COUNT(start) FROM table_name_21 WHERE finish < 4</s> | {
"answer": "SELECT COUNT(start) FROM table_name_21 WHERE finish < 4",
"context": "CREATE TABLE table_name_21 (start VARCHAR, finish INTEGER)",
"question": "Name the total number of start when finish is less than 4"
} |
### QUESTION
What is the name of the minister from the party of minister for community safety and legal affairs?
### CONTEXT
CREATE TABLE table_name_45 (name VARCHAR, party VARCHAR)
### ANSWER
SELECT name FROM table_name_45 WHERE party = "minister for community safety and legal affairs"</s> | {
"answer": "SELECT name FROM table_name_45 WHERE party = \"minister for community safety and legal affairs\"",
"context": "CREATE TABLE table_name_45 (name VARCHAR, party VARCHAR)",
"question": "What is the name of the minister from the party of minister for community safety and legal affairs?"
} |
### QUESTION
What is the least round number for Jon Olinger, who was picked before pick # 24?
### CONTEXT
CREATE TABLE table_name_3 (round INTEGER, name VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_3 WHERE name = "jon olinger" AND pick__number < 24</s> | {
"answer": "SELECT MIN(round) FROM table_name_3 WHERE name = \"jon olinger\" AND pick__number < 24",
"context": "CREATE TABLE table_name_3 (round INTEGER, name VARCHAR, pick__number VARCHAR)",
"question": "What is the least round number for Jon Olinger, who was picked before pick # 24?"
} |
### QUESTION
What year was the League the malaysian super league, and a Malaysia Cup of group stage?
### CONTEXT
CREATE TABLE table_name_73 (year VARCHAR, league VARCHAR, malaysia_cup VARCHAR)
### ANSWER
SELECT year FROM table_name_73 WHERE league = "malaysian super league" AND malaysia_cup = "group stage"</s> | {
"answer": "SELECT year FROM table_name_73 WHERE league = \"malaysian super league\" AND malaysia_cup = \"group stage\"",
"context": "CREATE TABLE table_name_73 (year VARCHAR, league VARCHAR, malaysia_cup VARCHAR)",
"question": "What year was the League the malaysian super league, and a Malaysia Cup of group stage?"
} |
### QUESTION
What is the largest Area (km²) for Deed number of 21352022 with a Population of more than 184?
### CONTEXT
CREATE TABLE table_name_29 (area__km²_ INTEGER, deed_number VARCHAR, population VARCHAR)
### ANSWER
SELECT MAX(area__km²_) FROM table_name_29 WHERE deed_number = "21352022" AND population > 184</s> | {
"answer": "SELECT MAX(area__km²_) FROM table_name_29 WHERE deed_number = \"21352022\" AND population > 184",
"context": "CREATE TABLE table_name_29 (area__km²_ INTEGER, deed_number VARCHAR, population VARCHAR)",
"question": "What is the largest Area (km²) for Deed number of 21352022 with a Population of more than 184?"
} |
### QUESTION
tell me the average roll for the featherston area and integrated authority.
### CONTEXT
CREATE TABLE table_name_48 (roll INTEGER, area VARCHAR, authority VARCHAR)
### ANSWER
SELECT AVG(roll) FROM table_name_48 WHERE area = "featherston" AND authority = "integrated"</s> | {
"answer": "SELECT AVG(roll) FROM table_name_48 WHERE area = \"featherston\" AND authority = \"integrated\"",
"context": "CREATE TABLE table_name_48 (roll INTEGER, area VARCHAR, authority VARCHAR)",
"question": "tell me the average roll for the featherston area and integrated authority."
} |
### QUESTION
tell me the total number of decile with a roll showing 251.
### CONTEXT
CREATE TABLE table_name_90 (decile VARCHAR, roll VARCHAR)
### ANSWER
SELECT COUNT(decile) FROM table_name_90 WHERE roll = 251</s> | {
"answer": "SELECT COUNT(decile) FROM table_name_90 WHERE roll = 251",
"context": "CREATE TABLE table_name_90 (decile VARCHAR, roll VARCHAR)",
"question": "tell me the total number of decile with a roll showing 251."
} |
### QUESTION
Operation start of 2015 has what gross mw?
### CONTEXT
CREATE TABLE table_name_56 (gross_mw VARCHAR, operation_start VARCHAR)
### ANSWER
SELECT gross_mw FROM table_name_56 WHERE operation_start = "2015"</s> | {
"answer": "SELECT gross_mw FROM table_name_56 WHERE operation_start = \"2015\"",
"context": "CREATE TABLE table_name_56 (gross_mw VARCHAR, operation_start VARCHAR)",
"question": "Operation start of 2015 has what gross mw?"
} |
### QUESTION
What week did the Jets play in the meadowlands with and attendance of 78,161?
### CONTEXT
CREATE TABLE table_name_13 (week INTEGER, game_site VARCHAR, attendance VARCHAR)
### ANSWER
SELECT SUM(week) FROM table_name_13 WHERE game_site = "the meadowlands" AND attendance = "78,161"</s> | {
"answer": "SELECT SUM(week) FROM table_name_13 WHERE game_site = \"the meadowlands\" AND attendance = \"78,161\"",
"context": "CREATE TABLE table_name_13 (week INTEGER, game_site VARCHAR, attendance VARCHAR)",
"question": "What week did the Jets play in the meadowlands with and attendance of 78,161?"
} |
### QUESTION
Which county has a % (2040) larger than 1.8, a % (2000) smaller than 4.1, a % (1960) smaller than 3.2, and is ranked 13?
### CONTEXT
CREATE TABLE table_name_82 (county VARCHAR, rank VARCHAR, _percentage__1960_ VARCHAR, _percentage__2040_ VARCHAR, _percentage__2000_ VARCHAR)
### ANSWER
SELECT county FROM table_name_82 WHERE _percentage__2040_ > 1.8 AND _percentage__2000_ < 4.1 AND _percentage__1960_ < 3.2 AND rank = "13"</s> | {
"answer": "SELECT county FROM table_name_82 WHERE _percentage__2040_ > 1.8 AND _percentage__2000_ < 4.1 AND _percentage__1960_ < 3.2 AND rank = \"13\"",
"context": "CREATE TABLE table_name_82 (county VARCHAR, rank VARCHAR, _percentage__1960_ VARCHAR, _percentage__2040_ VARCHAR, _percentage__2000_ VARCHAR)",
"question": "Which county has a % (2040) larger than 1.8, a % (2000) smaller than 4.1, a % (1960) smaller than 3.2, and is ranked 13?"
} |
### QUESTION
Name the representative appointed by george w. bush with presentation of credentials 9 november 2007
### CONTEXT
CREATE TABLE table_name_65 (representative VARCHAR, appointed_by VARCHAR, presentation_of_credentials VARCHAR)
### ANSWER
SELECT representative FROM table_name_65 WHERE appointed_by = "george w. bush" AND presentation_of_credentials = "9 november 2007"</s> | {
"answer": "SELECT representative FROM table_name_65 WHERE appointed_by = \"george w. bush\" AND presentation_of_credentials = \"9 november 2007\"",
"context": "CREATE TABLE table_name_65 (representative VARCHAR, appointed_by VARCHAR, presentation_of_credentials VARCHAR)",
"question": "Name the representative appointed by george w. bush with presentation of credentials 9 november 2007"
} |
### QUESTION
What's the highest Ends Lost with a shot % greater than 77, 11 blank ends, 7 stolen ends, and more than 44 ends one?
### CONTEXT
CREATE TABLE table_name_2 (ends_lost INTEGER, ends_won VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR, blank_ends VARCHAR)
### ANSWER
SELECT MAX(ends_lost) FROM table_name_2 WHERE shot_pct > 77 AND blank_ends = 11 AND stolen_ends = 7 AND ends_won > 44</s> | {
"answer": "SELECT MAX(ends_lost) FROM table_name_2 WHERE shot_pct > 77 AND blank_ends = 11 AND stolen_ends = 7 AND ends_won > 44",
"context": "CREATE TABLE table_name_2 (ends_lost INTEGER, ends_won VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR, blank_ends VARCHAR)",
"question": "What's the highest Ends Lost with a shot % greater than 77, 11 blank ends, 7 stolen ends, and more than 44 ends one?"
} |
### QUESTION
What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?
### CONTEXT
CREATE TABLE table_name_67 (whenbuilt VARCHAR, name VARCHAR, builder VARCHAR, withdrawn VARCHAR)
### ANSWER
SELECT whenbuilt FROM table_name_67 WHERE builder = "brighton" AND withdrawn = "september 1964" AND name = "blandford forum"</s> | {
"answer": "SELECT whenbuilt FROM table_name_67 WHERE builder = \"brighton\" AND withdrawn = \"september 1964\" AND name = \"blandford forum\"",
"context": "CREATE TABLE table_name_67 (whenbuilt VARCHAR, name VARCHAR, builder VARCHAR, withdrawn VARCHAR)",
"question": "What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?"
} |
### QUESTION
What year was stage 8 reached?
### CONTEXT
CREATE TABLE table_name_54 (year VARCHAR, stages VARCHAR)
### ANSWER
SELECT year FROM table_name_54 WHERE stages = "8"</s> | {
"answer": "SELECT year FROM table_name_54 WHERE stages = \"8\"",
"context": "CREATE TABLE table_name_54 (year VARCHAR, stages VARCHAR)",
"question": "What year was stage 8 reached?"
} |
### QUESTION
What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?
### CONTEXT
CREATE TABLE table_name_92 (highest_score INTEGER, lowest_score VARCHAR, worst_dancer_s_ VARCHAR, best_dancer_s_ VARCHAR)
### ANSWER
SELECT MIN(highest_score) FROM table_name_92 WHERE worst_dancer_s_ = "master p" AND best_dancer_s_ = "drew lachey" AND lowest_score < 8</s> | {
"answer": "SELECT MIN(highest_score) FROM table_name_92 WHERE worst_dancer_s_ = \"master p\" AND best_dancer_s_ = \"drew lachey\" AND lowest_score < 8",
"context": "CREATE TABLE table_name_92 (highest_score INTEGER, lowest_score VARCHAR, worst_dancer_s_ VARCHAR, best_dancer_s_ VARCHAR)",
"question": "What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?"
} |
### QUESTION
What is the average year of the most recent appearance of the Boston Crusaders, who had their first appearance after 1976?
### CONTEXT
CREATE TABLE table_name_27 (year_of_most_recent_appearance INTEGER, year_of_first_appearance VARCHAR, corps_name VARCHAR)
### ANSWER
SELECT AVG(year_of_most_recent_appearance) FROM table_name_27 WHERE year_of_first_appearance > 1976 AND corps_name = "boston crusaders"</s> | {
"answer": "SELECT AVG(year_of_most_recent_appearance) FROM table_name_27 WHERE year_of_first_appearance > 1976 AND corps_name = \"boston crusaders\"",
"context": "CREATE TABLE table_name_27 (year_of_most_recent_appearance INTEGER, year_of_first_appearance VARCHAR, corps_name VARCHAR)",
"question": "What is the average year of the most recent appearance of the Boston Crusaders, who had their first appearance after 1976?"
} |
### QUESTION
On what date did the match against Flavio Cipolla, played on a clay surface, occur?
### CONTEXT
CREATE TABLE table_name_58 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT date FROM table_name_58 WHERE surface = "clay" AND opponent_in_the_final = "flavio cipolla"</s> | {
"answer": "SELECT date FROM table_name_58 WHERE surface = \"clay\" AND opponent_in_the_final = \"flavio cipolla\"",
"context": "CREATE TABLE table_name_58 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)",
"question": "On what date did the match against Flavio Cipolla, played on a clay surface, occur?"
} |
### QUESTION
Who was in Academic & University Affairs when Andrew Langille was in local affairs?
### CONTEXT
CREATE TABLE table_name_72 (academic_ VARCHAR, _university_affairs VARCHAR, local_affairs VARCHAR)
### ANSWER
SELECT academic_ & _university_affairs FROM table_name_72 WHERE local_affairs = "andrew langille"</s> | {
"answer": "SELECT academic_ & _university_affairs FROM table_name_72 WHERE local_affairs = \"andrew langille\"",
"context": "CREATE TABLE table_name_72 (academic_ VARCHAR, _university_affairs VARCHAR, local_affairs VARCHAR)",
"question": "Who was in Academic & University Affairs when Andrew Langille was in local affairs?"
} |
### QUESTION
Which Melbourne had a gold coast and sydney which were yes, but an adelaide that was no?
### CONTEXT
CREATE TABLE table_name_59 (melbourne VARCHAR, sydney VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)
### ANSWER
SELECT melbourne FROM table_name_59 WHERE gold_coast = "yes" AND adelaide = "no" AND sydney = "yes"</s> | {
"answer": "SELECT melbourne FROM table_name_59 WHERE gold_coast = \"yes\" AND adelaide = \"no\" AND sydney = \"yes\"",
"context": "CREATE TABLE table_name_59 (melbourne VARCHAR, sydney VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)",
"question": "Which Melbourne had a gold coast and sydney which were yes, but an adelaide that was no?"
} |
### QUESTION
What team has rank 3?
### CONTEXT
CREATE TABLE table_name_73 (team VARCHAR, rank VARCHAR)
### ANSWER
SELECT team FROM table_name_73 WHERE rank = 3</s> | {
"answer": "SELECT team FROM table_name_73 WHERE rank = 3",
"context": "CREATE TABLE table_name_73 (team VARCHAR, rank VARCHAR)",
"question": "What team has rank 3?"
} |
### QUESTION
Which Syndney's Gold coast, Adelaide, Melbourne, and Auckland were all no?
### CONTEXT
CREATE TABLE table_name_47 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)
### ANSWER
SELECT sydney FROM table_name_47 WHERE gold_coast = "no" AND adelaide = "no" AND melbourne = "no" AND auckland = "no"</s> | {
"answer": "SELECT sydney FROM table_name_47 WHERE gold_coast = \"no\" AND adelaide = \"no\" AND melbourne = \"no\" AND auckland = \"no\"",
"context": "CREATE TABLE table_name_47 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)",
"question": "Which Syndney's Gold coast, Adelaide, Melbourne, and Auckland were all no?"
} |
### QUESTION
Which # 100 has a Season of 1991, and an Against of surrey?
### CONTEXT
CREATE TABLE table_name_87 (_number_100 INTEGER, season VARCHAR, against VARCHAR)
### ANSWER
SELECT MAX(_number_100) FROM table_name_87 WHERE season = "1991" AND against = "surrey"</s> | {
"answer": "SELECT MAX(_number_100) FROM table_name_87 WHERE season = \"1991\" AND against = \"surrey\"",
"context": "CREATE TABLE table_name_87 (_number_100 INTEGER, season VARCHAR, against VARCHAR)",
"question": "Which # 100 has a Season of 1991, and an Against of surrey?"
} |
### QUESTION
Name the distance for Course of vittorio veneto to marina romea
### CONTEXT
CREATE TABLE table_name_3 (distance VARCHAR, course VARCHAR)
### ANSWER
SELECT distance FROM table_name_3 WHERE course = "vittorio veneto to marina romea"</s> | {
"answer": "SELECT distance FROM table_name_3 WHERE course = \"vittorio veneto to marina romea\"",
"context": "CREATE TABLE table_name_3 (distance VARCHAR, course VARCHAR)",
"question": "Name the distance for Course of vittorio veneto to marina romea"
} |
### QUESTION
Which sum of # 100 has a Season of 1990, and an Against of warwickshire?
### CONTEXT
CREATE TABLE table_name_33 (_number_100 INTEGER, season VARCHAR, against VARCHAR)
### ANSWER
SELECT SUM(_number_100) FROM table_name_33 WHERE season = "1990" AND against = "warwickshire"</s> | {
"answer": "SELECT SUM(_number_100) FROM table_name_33 WHERE season = \"1990\" AND against = \"warwickshire\"",
"context": "CREATE TABLE table_name_33 (_number_100 INTEGER, season VARCHAR, against VARCHAR)",
"question": "Which sum of # 100 has a Season of 1990, and an Against of warwickshire?"
} |
### QUESTION
What is the score of the away team when the home team is Essendon?
### CONTEXT
CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_12 WHERE home_team = "essendon"</s> | {
"answer": "SELECT away_team AS score FROM table_name_12 WHERE home_team = \"essendon\"",
"context": "CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)",
"question": "What is the score of the away team when the home team is Essendon?"
} |
### QUESTION
What's the website for the Listen Live webcast on the 99.3 frequency?
### CONTEXT
CREATE TABLE table_name_81 (website VARCHAR, webcast VARCHAR, frequency VARCHAR)
### ANSWER
SELECT website FROM table_name_81 WHERE webcast = "listen live" AND frequency = 99.3</s> | {
"answer": "SELECT website FROM table_name_81 WHERE webcast = \"listen live\" AND frequency = 99.3",
"context": "CREATE TABLE table_name_81 (website VARCHAR, webcast VARCHAR, frequency VARCHAR)",
"question": "What's the website for the Listen Live webcast on the 99.3 frequency?"
} |
### QUESTION
Which Date has a Tournament of at&t pebble beach national pro-am, and a Margin of victory of 1 stroke, and a To par of –11?
### CONTEXT
CREATE TABLE table_name_14 (date VARCHAR, to_par VARCHAR, tournament VARCHAR, margin_of_victory VARCHAR)
### ANSWER
SELECT date FROM table_name_14 WHERE tournament = "at&t pebble beach national pro-am" AND margin_of_victory = "1 stroke" AND to_par = "–11"</s> | {
"answer": "SELECT date FROM table_name_14 WHERE tournament = \"at&t pebble beach national pro-am\" AND margin_of_victory = \"1 stroke\" AND to_par = \"–11\"",
"context": "CREATE TABLE table_name_14 (date VARCHAR, to_par VARCHAR, tournament VARCHAR, margin_of_victory VARCHAR)",
"question": "Which Date has a Tournament of at&t pebble beach national pro-am, and a Margin of victory of 1 stroke, and a To par of –11?"
} |
### QUESTION
Name the average debt as % of value for operating income more than -16 and % change on year being 62
### CONTEXT
CREATE TABLE table_name_7 (debt_as__percentage_of_value INTEGER, _percentage_change_on_year VARCHAR, operating_income__$m_ VARCHAR)
### ANSWER
SELECT AVG(debt_as__percentage_of_value) FROM table_name_7 WHERE _percentage_change_on_year = "62" AND operating_income__$m_ > -16</s> | {
"answer": "SELECT AVG(debt_as__percentage_of_value) FROM table_name_7 WHERE _percentage_change_on_year = \"62\" AND operating_income__$m_ > -16",
"context": "CREATE TABLE table_name_7 (debt_as__percentage_of_value INTEGER, _percentage_change_on_year VARCHAR, operating_income__$m_ VARCHAR)",
"question": "Name the average debt as % of value for operating income more than -16 and % change on year being 62"
} |
### QUESTION
Name the total number of revenue for italy with team of internazionale with operating income less than 27
### CONTEXT
CREATE TABLE table_name_21 (revenue__ VARCHAR, operating_income__$m_ VARCHAR, country VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(revenue__) AS $m_ FROM table_name_21 WHERE country = "italy" AND team = "internazionale" AND operating_income__$m_ < 27</s> | {
"answer": "SELECT COUNT(revenue__) AS $m_ FROM table_name_21 WHERE country = \"italy\" AND team = \"internazionale\" AND operating_income__$m_ < 27",
"context": "CREATE TABLE table_name_21 (revenue__ VARCHAR, operating_income__$m_ VARCHAR, country VARCHAR, team VARCHAR)",
"question": "Name the total number of revenue for italy with team of internazionale with operating income less than 27"
} |
### QUESTION
Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0
### CONTEXT
CREATE TABLE table_name_92 (revenue__ INTEGER, debt_as__percentage_of_value VARCHAR, operating_income__$m_ VARCHAR, team VARCHAR)
### ANSWER
SELECT MAX(revenue__) AS $m_ FROM table_name_92 WHERE operating_income__$m_ > 27 AND team = "hamburg" AND debt_as__percentage_of_value < 0</s> | {
"answer": "SELECT MAX(revenue__) AS $m_ FROM table_name_92 WHERE operating_income__$m_ > 27 AND team = \"hamburg\" AND debt_as__percentage_of_value < 0",
"context": "CREATE TABLE table_name_92 (revenue__ INTEGER, debt_as__percentage_of_value VARCHAR, operating_income__$m_ VARCHAR, team VARCHAR)",
"question": "Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0"
} |
### QUESTION
What is the home team score when the away team is Essendon?
### CONTEXT
CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_77 WHERE away_team = "essendon"</s> | {
"answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"essendon\"",
"context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)",
"question": "What is the home team score when the away team is Essendon?"
} |
### QUESTION
Name the to par with money of 200,000 for australia
### CONTEXT
CREATE TABLE table_name_30 (to_par VARCHAR, money___£__ VARCHAR, country VARCHAR)
### ANSWER
SELECT to_par FROM table_name_30 WHERE money___£__ = "200,000" AND country = "australia"</s> | {
"answer": "SELECT to_par FROM table_name_30 WHERE money___£__ = \"200,000\" AND country = \"australia\"",
"context": "CREATE TABLE table_name_30 (to_par VARCHAR, money___£__ VARCHAR, country VARCHAR)",
"question": "Name the to par with money of 200,000 for australia"
} |
### QUESTION
Name the total number of population hervey bay with population woocoo less than 640 and population of maryborough less than 19,257
### CONTEXT
CREATE TABLE table_name_94 (population__hervey_bay_ VARCHAR, population__woocoo_ VARCHAR, population__maryborough_ VARCHAR)
### ANSWER
SELECT COUNT(population__hervey_bay_) FROM table_name_94 WHERE population__woocoo_ < 640 AND population__maryborough_ < 19 OFFSET 257</s> | {
"answer": "SELECT COUNT(population__hervey_bay_) FROM table_name_94 WHERE population__woocoo_ < 640 AND population__maryborough_ < 19 OFFSET 257",
"context": "CREATE TABLE table_name_94 (population__hervey_bay_ VARCHAR, population__woocoo_ VARCHAR, population__maryborough_ VARCHAR)",
"question": "Name the total number of population hervey bay with population woocoo less than 640 and population of maryborough less than 19,257"
} |
### QUESTION
What was the sum of January values with a record of 27-12-3 for a game less than 42?
### CONTEXT
CREATE TABLE table_name_36 (january INTEGER, record VARCHAR, game VARCHAR)
### ANSWER
SELECT SUM(january) FROM table_name_36 WHERE record = "27-12-3" AND game < 42</s> | {
"answer": "SELECT SUM(january) FROM table_name_36 WHERE record = \"27-12-3\" AND game < 42",
"context": "CREATE TABLE table_name_36 (january INTEGER, record VARCHAR, game VARCHAR)",
"question": "What was the sum of January values with a record of 27-12-3 for a game less than 42?"
} |
### QUESTION
What is the number in January for Philadelphia Flyers as opponents?
### CONTEXT
CREATE TABLE table_name_30 (january VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(january) FROM table_name_30 WHERE opponent = "philadelphia flyers"</s> | {
"answer": "SELECT COUNT(january) FROM table_name_30 WHERE opponent = \"philadelphia flyers\"",
"context": "CREATE TABLE table_name_30 (january VARCHAR, opponent VARCHAR)",
"question": "What is the number in January for Philadelphia Flyers as opponents?"
} |
### QUESTION
What position does the player who has made 244 appearances with a Leeds career of 1981–1989 play?
### CONTEXT
CREATE TABLE table_name_58 (position VARCHAR, appearances VARCHAR, leeds_career VARCHAR)
### ANSWER
SELECT position FROM table_name_58 WHERE appearances = 244 AND leeds_career = "1981–1989"</s> | {
"answer": "SELECT position FROM table_name_58 WHERE appearances = 244 AND leeds_career = \"1981–1989\"",
"context": "CREATE TABLE table_name_58 (position VARCHAR, appearances VARCHAR, leeds_career VARCHAR)",
"question": "What position does the player who has made 244 appearances with a Leeds career of 1981–1989 play?"
} |
### QUESTION
What is the first year that Mario Lemieux from Canada won playing center?
### CONTEXT
CREATE TABLE table_name_21 (year INTEGER, player VARCHAR, country VARCHAR, position VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_21 WHERE country = "canada" AND position = "center" AND player = "mario lemieux"</s> | {
"answer": "SELECT MIN(year) FROM table_name_21 WHERE country = \"canada\" AND position = \"center\" AND player = \"mario lemieux\"",
"context": "CREATE TABLE table_name_21 (year INTEGER, player VARCHAR, country VARCHAR, position VARCHAR)",
"question": "What is the first year that Mario Lemieux from Canada won playing center?"
} |
### QUESTION
What is the maximum memory of the model that has a standard memory of 16 mb?
### CONTEXT
CREATE TABLE table_name_10 (maximum_memory VARCHAR, standard_memory VARCHAR)
### ANSWER
SELECT maximum_memory FROM table_name_10 WHERE standard_memory = "16 mb"</s> | {
"answer": "SELECT maximum_memory FROM table_name_10 WHERE standard_memory = \"16 mb\"",
"context": "CREATE TABLE table_name_10 (maximum_memory VARCHAR, standard_memory VARCHAR)",
"question": "What is the maximum memory of the model that has a standard memory of 16 mb?"
} |
### QUESTION
What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup?
### CONTEXT
CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT venue FROM table_name_60 WHERE result = "2-0" AND score = "1 goal" AND competition = "1980 afc asian cup"</s> | {
"answer": "SELECT venue FROM table_name_60 WHERE result = \"2-0\" AND score = \"1 goal\" AND competition = \"1980 afc asian cup\"",
"context": "CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)",
"question": "What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup?"
} |
### QUESTION
What was the smallest crowd size at a home game for Footscray?
### CONTEXT
CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)
### ANSWER
SELECT MIN(crowd) FROM table_name_93 WHERE home_team = "footscray"</s> | {
"answer": "SELECT MIN(crowd) FROM table_name_93 WHERE home_team = \"footscray\"",
"context": "CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)",
"question": "What was the smallest crowd size at a home game for Footscray?"
} |
### QUESTION
What year had the Chassis of march 762 and more than 0 points?
### CONTEXT
CREATE TABLE table_name_64 (year VARCHAR, chassis VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_64 WHERE chassis = "march 762" AND points > 0</s> | {
"answer": "SELECT COUNT(year) FROM table_name_64 WHERE chassis = \"march 762\" AND points > 0",
"context": "CREATE TABLE table_name_64 (year VARCHAR, chassis VARCHAR, points VARCHAR)",
"question": "What year had the Chassis of march 762 and more than 0 points?"
} |
### QUESTION
What is the lowest grid number that had a rider with KTM as the manufacturer who did more than 20 laps?
### CONTEXT
CREATE TABLE table_name_74 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)
### ANSWER
SELECT MIN(grid) FROM table_name_74 WHERE manufacturer = "ktm" AND laps > 20</s> | {
"answer": "SELECT MIN(grid) FROM table_name_74 WHERE manufacturer = \"ktm\" AND laps > 20",
"context": "CREATE TABLE table_name_74 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)",
"question": "What is the lowest grid number that had a rider with KTM as the manufacturer who did more than 20 laps?"
} |
### QUESTION
What is the record when the game was played at raymond james stadium?
### CONTEXT
CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR)
### ANSWER
SELECT record FROM table_name_46 WHERE game_site = "raymond james stadium"</s> | {
"answer": "SELECT record FROM table_name_46 WHERE game_site = \"raymond james stadium\"",
"context": "CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR)",
"question": "What is the record when the game was played at raymond james stadium?"
} |
### QUESTION
What is the kickoff for the game on october 22, 2000?
### CONTEXT
CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR)
### ANSWER
SELECT kickoff FROM table_name_30 WHERE date = "october 22, 2000"</s> | {
"answer": "SELECT kickoff FROM table_name_30 WHERE date = \"october 22, 2000\"",
"context": "CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR)",
"question": "What is the kickoff for the game on october 22, 2000?"
} |
### QUESTION
Which language is used by the optimum TV service that shows cricket and is based in the United States?
### CONTEXT
CREATE TABLE table_name_43 (language VARCHAR, genre VARCHAR, service VARCHAR, origin_of_programming VARCHAR)
### ANSWER
SELECT language FROM table_name_43 WHERE service = "optimum tv" AND origin_of_programming = "united states" AND genre = "cricket"</s> | {
"answer": "SELECT language FROM table_name_43 WHERE service = \"optimum tv\" AND origin_of_programming = \"united states\" AND genre = \"cricket\"",
"context": "CREATE TABLE table_name_43 (language VARCHAR, genre VARCHAR, service VARCHAR, origin_of_programming VARCHAR)",
"question": "Which language is used by the optimum TV service that shows cricket and is based in the United States?"
} |
### QUESTION
What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?
### CONTEXT
CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR)
### ANSWER
SELECT origin_of_programming FROM table_name_11 WHERE service = "dish" AND language = "malayalam" AND genre = "general" AND network = "asianet plus"</s> | {
"answer": "SELECT origin_of_programming FROM table_name_11 WHERE service = \"dish\" AND language = \"malayalam\" AND genre = \"general\" AND network = \"asianet plus\"",
"context": "CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR)",
"question": "What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?"
} |
### QUESTION
What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?
### CONTEXT
CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_10 WHERE constructor = "ferrari" AND time_retired = "1:32:35.101"</s> | {
"answer": "SELECT AVG(grid) FROM table_name_10 WHERE constructor = \"ferrari\" AND time_retired = \"1:32:35.101\"",
"context": "CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR)",
"question": "What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?"
} |
### QUESTION
Which Type has a Date smaller than 1943, and a Builder of alco schenectady, and a Number larger than 822, and Works number of 59867?
### CONTEXT
CREATE TABLE table_name_46 (type VARCHAR, works_number VARCHAR, number VARCHAR, date VARCHAR, builder VARCHAR)
### ANSWER
SELECT type FROM table_name_46 WHERE date < 1943 AND builder = "alco schenectady" AND number > 822 AND works_number = 59867</s> | {
"answer": "SELECT type FROM table_name_46 WHERE date < 1943 AND builder = \"alco schenectady\" AND number > 822 AND works_number = 59867",
"context": "CREATE TABLE table_name_46 (type VARCHAR, works_number VARCHAR, number VARCHAR, date VARCHAR, builder VARCHAR)",
"question": "Which Type has a Date smaller than 1943, and a Builder of alco schenectady, and a Number larger than 822, and Works number of 59867?"
} |
### QUESTION
What is the sum of bronze when silver is greater than 3?
### CONTEXT
CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER)
### ANSWER
SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3</s> | {
"answer": "SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3",
"context": "CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER)",
"question": "What is the sum of bronze when silver is greater than 3?"
} |
### QUESTION
What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?
### CONTEXT
CREATE TABLE table_name_54 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_54 WHERE gold = 0 AND bronze = 0 AND silver < 1</s> | {
"answer": "SELECT AVG(total) FROM table_name_54 WHERE gold = 0 AND bronze = 0 AND silver < 1",
"context": "CREATE TABLE table_name_54 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)",
"question": "What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?"
} |
### QUESTION
In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?
### CONTEXT
CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)
### ANSWER
SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = "episode 7" AND entrepreneur_s_ = "jerry mantalvanos & paul merker"</s> | {
"answer": "SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = \"episode 7\" AND entrepreneur_s_ = \"jerry mantalvanos & paul merker\"",
"context": "CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)",
"question": "In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?"
} |
### QUESTION
How much money did reestore request ?
### CONTEXT
CREATE TABLE table_name_59 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)
### ANSWER
SELECT money_requested__£_ FROM table_name_59 WHERE company_or_product_name = "reestore"</s> | {
"answer": "SELECT money_requested__£_ FROM table_name_59 WHERE company_or_product_name = \"reestore\"",
"context": "CREATE TABLE table_name_59 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)",
"question": "How much money did reestore request ?"
} |
### QUESTION
Which Opponents in Final has an Outcome of winner, and a Surface of hard, and a Date of april 17, 1994?
### CONTEXT
CREATE TABLE table_name_15 (opponents_in_final VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)
### ANSWER
SELECT opponents_in_final FROM table_name_15 WHERE outcome = "winner" AND surface = "hard" AND date = "april 17, 1994"</s> | {
"answer": "SELECT opponents_in_final FROM table_name_15 WHERE outcome = \"winner\" AND surface = \"hard\" AND date = \"april 17, 1994\"",
"context": "CREATE TABLE table_name_15 (opponents_in_final VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)",
"question": "Which Opponents in Final has an Outcome of winner, and a Surface of hard, and a Date of april 17, 1994?"
} |
### QUESTION
Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?
### CONTEXT
CREATE TABLE table_name_80 (race VARCHAR, date VARCHAR, place VARCHAR, season VARCHAR)
### ANSWER
SELECT race FROM table_name_80 WHERE place = "2nd" AND season = 1996 AND date = "20-jan-1996"</s> | {
"answer": "SELECT race FROM table_name_80 WHERE place = \"2nd\" AND season = 1996 AND date = \"20-jan-1996\"",
"context": "CREATE TABLE table_name_80 (race VARCHAR, date VARCHAR, place VARCHAR, season VARCHAR)",
"question": "Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?"
} |
### QUESTION
What is the Record that has a Home of detroit red wings, and a Score of 1–2 on december 29?
### CONTEXT
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, home VARCHAR, score VARCHAR)
### ANSWER
SELECT record FROM table_name_23 WHERE home = "detroit red wings" AND score = "1–2" AND date = "december 29"</s> | {
"answer": "SELECT record FROM table_name_23 WHERE home = \"detroit red wings\" AND score = \"1–2\" AND date = \"december 29\"",
"context": "CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, home VARCHAR, score VARCHAR)",
"question": "What is the Record that has a Home of detroit red wings, and a Score of 1–2 on december 29?"
} |
### QUESTION
Which Pick # is the highest one that has a Name of william middleton, and a Round larger than 5?
### CONTEXT
CREATE TABLE table_name_32 (pick__number INTEGER, name VARCHAR, round VARCHAR)
### ANSWER
SELECT MAX(pick__number) FROM table_name_32 WHERE name = "william middleton" AND round > 5</s> | {
"answer": "SELECT MAX(pick__number) FROM table_name_32 WHERE name = \"william middleton\" AND round > 5",
"context": "CREATE TABLE table_name_32 (pick__number INTEGER, name VARCHAR, round VARCHAR)",
"question": "Which Pick # is the highest one that has a Name of william middleton, and a Round larger than 5?"
} |
### QUESTION
What are the total number of matches smaller than 2 with a tally of 1-19?
### CONTEXT
CREATE TABLE table_name_84 (total VARCHAR, tally VARCHAR, matches VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_84 WHERE tally = "1-19" AND matches < 2</s> | {
"answer": "SELECT COUNT(total) FROM table_name_84 WHERE tally = \"1-19\" AND matches < 2",
"context": "CREATE TABLE table_name_84 (total VARCHAR, tally VARCHAR, matches VARCHAR)",
"question": "What are the total number of matches smaller than 2 with a tally of 1-19?"
} |
### QUESTION
Which Pick # is the highest one that has a Name of lawrence sidbury, and a Round smaller than 4?
### CONTEXT
CREATE TABLE table_name_86 (pick__number INTEGER, name VARCHAR, round VARCHAR)
### ANSWER
SELECT MAX(pick__number) FROM table_name_86 WHERE name = "lawrence sidbury" AND round < 4</s> | {
"answer": "SELECT MAX(pick__number) FROM table_name_86 WHERE name = \"lawrence sidbury\" AND round < 4",
"context": "CREATE TABLE table_name_86 (pick__number INTEGER, name VARCHAR, round VARCHAR)",
"question": "Which Pick # is the highest one that has a Name of lawrence sidbury, and a Round smaller than 4?"
} |
### QUESTION
Name the being for having things of language, religions, work, customs, values, norms?
### CONTEXT
CREATE TABLE table_name_52 (being__qualities_ VARCHAR, having__things_ VARCHAR)
### ANSWER
SELECT being__qualities_ FROM table_name_52 WHERE having__things_ = "language, religions, work, customs, values, norms"</s> | {
"answer": "SELECT being__qualities_ FROM table_name_52 WHERE having__things_ = \"language, religions, work, customs, values, norms\"",
"context": "CREATE TABLE table_name_52 (being__qualities_ VARCHAR, having__things_ VARCHAR)",
"question": "Name the being for having things of language, religions, work, customs, values, norms?"
} |
### QUESTION
Which winning driver of the Roussillon Grand Prix had an Alfa Romeo?
### CONTEXT
CREATE TABLE table_name_53 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)
### ANSWER
SELECT winning_driver FROM table_name_53 WHERE winning_constructor = "alfa romeo" AND name = "roussillon grand prix"</s> | {
"answer": "SELECT winning_driver FROM table_name_53 WHERE winning_constructor = \"alfa romeo\" AND name = \"roussillon grand prix\"",
"context": "CREATE TABLE table_name_53 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)",
"question": "Which winning driver of the Roussillon Grand Prix had an Alfa Romeo?"
} |
### QUESTION
Name the interacting settings for co-operate, plan, take care of, help
### CONTEXT
CREATE TABLE table_name_40 (interacting__settings_ VARCHAR, doing__actions_ VARCHAR)
### ANSWER
SELECT interacting__settings_ FROM table_name_40 WHERE doing__actions_ = "co-operate, plan, take care of, help"</s> | {
"answer": "SELECT interacting__settings_ FROM table_name_40 WHERE doing__actions_ = \"co-operate, plan, take care of, help\"",
"context": "CREATE TABLE table_name_40 (interacting__settings_ VARCHAR, doing__actions_ VARCHAR)",
"question": "Name the interacting settings for co-operate, plan, take care of, help"
} |
### QUESTION
What was the oilers record for the game on November 27 when the Edmonton oilers were playing at home and the Chicago Blackhawks were the visiting team?
### CONTEXT
CREATE TABLE table_name_85 (record VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
### ANSWER
SELECT record FROM table_name_85 WHERE home = "edmonton oilers" AND visitor = "chicago blackhawks" AND date = "november 27"</s> | {
"answer": "SELECT record FROM table_name_85 WHERE home = \"edmonton oilers\" AND visitor = \"chicago blackhawks\" AND date = \"november 27\"",
"context": "CREATE TABLE table_name_85 (record VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)",
"question": "What was the oilers record for the game on November 27 when the Edmonton oilers were playing at home and the Chicago Blackhawks were the visiting team?"
} |
### QUESTION
Name the lead for institute of election results and social democratic of 31.7% 8 seats
### CONTEXT
CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)
### ANSWER
SELECT lead FROM table_name_95 WHERE institute = "election results" AND social_democratic = "31.7% 8 seats"</s> | {
"answer": "SELECT lead FROM table_name_95 WHERE institute = \"election results\" AND social_democratic = \"31.7% 8 seats\"",
"context": "CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)",
"question": "Name the lead for institute of election results and social democratic of 31.7% 8 seats"
} |
### QUESTION
Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin?
### CONTEXT
CREATE TABLE table_name_3 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
### ANSWER
SELECT driver FROM table_name_3 WHERE laps < 53 AND grid > 17 AND time_retired = "spin"</s> | {
"answer": "SELECT driver FROM table_name_3 WHERE laps < 53 AND grid > 17 AND time_retired = \"spin\"",
"context": "CREATE TABLE table_name_3 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)",
"question": "Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin?"
} |
### QUESTION
What district is James Humphrey from who was first elected in 1858 and was eventually defeated democratic gain?
### CONTEXT
CREATE TABLE table_name_3 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)
### ANSWER
SELECT district FROM table_name_3 WHERE first_elected = 1858 AND result = "defeated democratic gain" AND incumbent = "james humphrey"</s> | {
"answer": "SELECT district FROM table_name_3 WHERE first_elected = 1858 AND result = \"defeated democratic gain\" AND incumbent = \"james humphrey\"",
"context": "CREATE TABLE table_name_3 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)",
"question": "What district is James Humphrey from who was first elected in 1858 and was eventually defeated democratic gain?"
} |
### QUESTION
What date was the surface hard and Eva Hrdinová was the opponent?
### CONTEXT
CREATE TABLE table_name_40 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
### ANSWER
SELECT date FROM table_name_40 WHERE surface = "hard" AND opponent = "eva hrdinová"</s> | {
"answer": "SELECT date FROM table_name_40 WHERE surface = \"hard\" AND opponent = \"eva hrdinová\"",
"context": "CREATE TABLE table_name_40 (date VARCHAR, surface VARCHAR, opponent VARCHAR)",
"question": "What date was the surface hard and Eva Hrdinová was the opponent?"
} |
### QUESTION
Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?
### CONTEXT
CREATE TABLE table_name_13 (year_left INTEGER, school VARCHAR, year_joined VARCHAR)
### ANSWER
SELECT MIN(year_left) FROM table_name_13 WHERE school = "calumet" AND year_joined > 1993</s> | {
"answer": "SELECT MIN(year_left) FROM table_name_13 WHERE school = \"calumet\" AND year_joined > 1993",
"context": "CREATE TABLE table_name_13 (year_left INTEGER, school VARCHAR, year_joined VARCHAR)",
"question": "Which Year Left is the lowest one that has a School of calumet, and a Year Joined larger than 1993?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.