text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is the lowest game on February 10?
### CONTEXT
CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_66 WHERE date = "february 10"</s> | {
"answer": "SELECT MIN(game) FROM table_name_66 WHERE date = \"february 10\"",
"context": "CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)",
"question": "What is the lowest game on February 10?"
} |
### QUESTION
Who was the driver/passengar when the position was smaller than 8, the third was 1, and there was 1 win?
### CONTEXT
CREATE TABLE table_name_56 (driver___passenger VARCHAR, wins VARCHAR, third VARCHAR, position VARCHAR)
### ANSWER
SELECT driver___passenger FROM table_name_56 WHERE third = "1" AND position < 8 AND wins = "1"</s> | {
"answer": "SELECT driver___passenger FROM table_name_56 WHERE third = \"1\" AND position < 8 AND wins = \"1\"",
"context": "CREATE TABLE table_name_56 (driver___passenger VARCHAR, wins VARCHAR, third VARCHAR, position VARCHAR)",
"question": "Who was the driver/passengar when the position was smaller than 8, the third was 1, and there was 1 win?"
} |
### QUESTION
Can you tell me the lowest Points won that has the Total matches of 4, and the Total W-L-H of 4-0-0?
### CONTEXT
CREATE TABLE table_name_66 (points_won INTEGER, total_matches VARCHAR, total_w_l_h VARCHAR)
### ANSWER
SELECT MIN(points_won) FROM table_name_66 WHERE total_matches = 4 AND total_w_l_h = "4-0-0"</s> | {
"answer": "SELECT MIN(points_won) FROM table_name_66 WHERE total_matches = 4 AND total_w_l_h = \"4-0-0\"",
"context": "CREATE TABLE table_name_66 (points_won INTEGER, total_matches VARCHAR, total_w_l_h VARCHAR)",
"question": "Can you tell me the lowest Points won that has the Total matches of 4, and the Total W-L-H of 4-0-0?"
} |
### QUESTION
What score did Australia get?
### CONTEXT
CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)
### ANSWER
SELECT score FROM table_name_85 WHERE country = "australia"</s> | {
"answer": "SELECT score FROM table_name_85 WHERE country = \"australia\"",
"context": "CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)",
"question": "What score did Australia get?"
} |
### QUESTION
What is Team, when Replaced By is "Jesús Ramírez"?
### CONTEXT
CREATE TABLE table_name_92 (team VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT team FROM table_name_92 WHERE replaced_by = "jesús ramírez"</s> | {
"answer": "SELECT team FROM table_name_92 WHERE replaced_by = \"jesús ramírez\"",
"context": "CREATE TABLE table_name_92 (team VARCHAR, replaced_by VARCHAR)",
"question": "What is Team, when Replaced By is \"Jesús Ramírez\"?"
} |
### QUESTION
What is Position in Table, when Replaced by is "José Pekerman"?
### CONTEXT
CREATE TABLE table_name_43 (position_in_table VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT position_in_table FROM table_name_43 WHERE replaced_by = "josé pekerman"</s> | {
"answer": "SELECT position_in_table FROM table_name_43 WHERE replaced_by = \"josé pekerman\"",
"context": "CREATE TABLE table_name_43 (position_in_table VARCHAR, replaced_by VARCHAR)",
"question": "What is Position in Table, when Replaced by is \"José Pekerman\"?"
} |
### QUESTION
Which Gold has a Nation of india, and a Bronze smaller than 0?
### CONTEXT
CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
### ANSWER
SELECT AVG(gold) FROM table_name_84 WHERE nation = "india" AND bronze < 0</s> | {
"answer": "SELECT AVG(gold) FROM table_name_84 WHERE nation = \"india\" AND bronze < 0",
"context": "CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)",
"question": "Which Gold has a Nation of india, and a Bronze smaller than 0?"
} |
### QUESTION
Which Avg/G is the lowest one that has a Long smaller than 47, and a Name of frank murphy, and a Gain smaller than 569?
### CONTEXT
CREATE TABLE table_name_86 (avg_g INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(avg_g) FROM table_name_86 WHERE long < 47 AND name = "frank murphy" AND gain < 569</s> | {
"answer": "SELECT MIN(avg_g) FROM table_name_86 WHERE long < 47 AND name = \"frank murphy\" AND gain < 569",
"context": "CREATE TABLE table_name_86 (avg_g INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR)",
"question": "Which Avg/G is the lowest one that has a Long smaller than 47, and a Name of frank murphy, and a Gain smaller than 569?"
} |
### QUESTION
Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?
### CONTEXT
CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = "13"</s> | {
"answer": "SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = \"13\"",
"context": "CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)",
"question": "Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?"
} |
### QUESTION
Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?
### CONTEXT
CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR)
### ANSWER
SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = "90%" AND infant_mortality__2002_ = "18.3‰"</s> | {
"answer": "SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = \"90%\" AND infant_mortality__2002_ = \"18.3‰\"",
"context": "CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR)",
"question": "Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?"
} |
### QUESTION
Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?
### CONTEXT
CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)
### ANSWER
SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300</s> | {
"answer": "SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300",
"context": "CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)",
"question": "Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?"
} |
### QUESTION
Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranhão?
### CONTEXT
CREATE TABLE table_name_8 (literacy__2003_ VARCHAR, state VARCHAR, hdi__2005_ VARCHAR, gdp_per_capita__us$___2004_ VARCHAR)
### ANSWER
SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = "maranhão"</s> | {
"answer": "SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = \"maranhão\"",
"context": "CREATE TABLE table_name_8 (literacy__2003_ VARCHAR, state VARCHAR, hdi__2005_ VARCHAR, gdp_per_capita__us$___2004_ VARCHAR)",
"question": "Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranhão?"
} |
### QUESTION
Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?
### CONTEXT
CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR)
### ANSWER
SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = "90%" AND area__km²_ = 1247689.5</s> | {
"answer": "SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = \"90%\" AND area__km²_ = 1247689.5",
"context": "CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR)",
"question": "Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?"
} |
### QUESTION
What is the date (to) associated wiht a traction type of electric and the Yarmouth Light and Power Company system?
### CONTEXT
CREATE TABLE table_name_38 (date__to_ VARCHAR, traction_type VARCHAR, name_of_system VARCHAR)
### ANSWER
SELECT date__to_ FROM table_name_38 WHERE traction_type = "electric" AND name_of_system = "yarmouth light and power company"</s> | {
"answer": "SELECT date__to_ FROM table_name_38 WHERE traction_type = \"electric\" AND name_of_system = \"yarmouth light and power company\"",
"context": "CREATE TABLE table_name_38 (date__to_ VARCHAR, traction_type VARCHAR, name_of_system VARCHAR)",
"question": "What is the date (to) associated wiht a traction type of electric and the Yarmouth Light and Power Company system?"
} |
### QUESTION
What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is "Tom Barrington"?
### CONTEXT
CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR)
### ANSWER
SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = "tom barrington"</s> | {
"answer": "SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = \"tom barrington\"",
"context": "CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR)",
"question": "What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is \"Tom Barrington\"?"
} |
### QUESTION
How many games had fewer than 118 opponents and more than 109 net points with an opponent of Washington?
### CONTEXT
CREATE TABLE table_name_37 (game VARCHAR, opponent VARCHAR, opponents VARCHAR, nets_points VARCHAR)
### ANSWER
SELECT COUNT(game) FROM table_name_37 WHERE opponents < 118 AND nets_points > 109 AND opponent = "washington"</s> | {
"answer": "SELECT COUNT(game) FROM table_name_37 WHERE opponents < 118 AND nets_points > 109 AND opponent = \"washington\"",
"context": "CREATE TABLE table_name_37 (game VARCHAR, opponent VARCHAR, opponents VARCHAR, nets_points VARCHAR)",
"question": "How many games had fewer than 118 opponents and more than 109 net points with an opponent of Washington?"
} |
### QUESTION
Who played against in venue a on 17 february 1900?
### CONTEXT
CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent FROM table_name_43 WHERE venue = "a" AND date = "17 february 1900"</s> | {
"answer": "SELECT opponent FROM table_name_43 WHERE venue = \"a\" AND date = \"17 february 1900\"",
"context": "CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)",
"question": "Who played against in venue a on 17 february 1900?"
} |
### QUESTION
What is the class of team liqui moly equipe, which has less than 71 laps?
### CONTEXT
CREATE TABLE table_name_85 (class VARCHAR, laps VARCHAR, team VARCHAR)
### ANSWER
SELECT class FROM table_name_85 WHERE laps < 71 AND team = "liqui moly equipe"</s> | {
"answer": "SELECT class FROM table_name_85 WHERE laps < 71 AND team = \"liqui moly equipe\"",
"context": "CREATE TABLE table_name_85 (class VARCHAR, laps VARCHAR, team VARCHAR)",
"question": "What is the class of team liqui moly equipe, which has less than 71 laps?"
} |
### QUESTION
How much January has a Game smaller than 37, and an Opponent of detroit red wings?
### CONTEXT
CREATE TABLE table_name_67 (january VARCHAR, game VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(january) FROM table_name_67 WHERE game < 37 AND opponent = "detroit red wings"</s> | {
"answer": "SELECT COUNT(january) FROM table_name_67 WHERE game < 37 AND opponent = \"detroit red wings\"",
"context": "CREATE TABLE table_name_67 (january VARCHAR, game VARCHAR, opponent VARCHAR)",
"question": "How much January has a Game smaller than 37, and an Opponent of detroit red wings?"
} |
### QUESTION
Which Player has a Round smaller than 5, and a School/Club Team of florida state?
### CONTEXT
CREATE TABLE table_name_77 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT player FROM table_name_77 WHERE round < 5 AND school_club_team = "florida state"</s> | {
"answer": "SELECT player FROM table_name_77 WHERE round < 5 AND school_club_team = \"florida state\"",
"context": "CREATE TABLE table_name_77 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)",
"question": "Which Player has a Round smaller than 5, and a School/Club Team of florida state?"
} |
### QUESTION
What was the rank of the rider whose ascent time was 43:24 before the year 2002?
### CONTEXT
CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR)
### ANSWER
SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = "43:24"</s> | {
"answer": "SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = \"43:24\"",
"context": "CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR)",
"question": "What was the rank of the rider whose ascent time was 43:24 before the year 2002?"
} |
### QUESTION
Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?
### CONTEXT
CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR)
### ANSWER
SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = "18.32 km/h"</s> | {
"answer": "SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = \"18.32 km/h\"",
"context": "CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR)",
"question": "Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?"
} |
### QUESTION
Which Round has a School/Club Team of cal-poly slo, and a Pick smaller than 238?
### CONTEXT
CREATE TABLE table_name_67 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_name_67 WHERE school_club_team = "cal-poly slo" AND pick < 238</s> | {
"answer": "SELECT MAX(round) FROM table_name_67 WHERE school_club_team = \"cal-poly slo\" AND pick < 238",
"context": "CREATE TABLE table_name_67 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)",
"question": "Which Round has a School/Club Team of cal-poly slo, and a Pick smaller than 238?"
} |
### QUESTION
What is the probable future word for the simple present/future word high grade?
### CONTEXT
CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR)
### ANSWER
SELECT probable_future FROM table_name_82 WHERE NOT simple_present_future = "high grade"</s> | {
"answer": "SELECT probable_future FROM table_name_82 WHERE NOT simple_present_future = \"high grade\"",
"context": "CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR)",
"question": "What is the probable future word for the simple present/future word high grade?"
} |
### QUESTION
How many points were there when there were less than 16 rebounds and 5 assists?
### CONTEXT
CREATE TABLE table_name_83 (points VARCHAR, assists VARCHAR, rebounds VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_83 WHERE assists = 5 AND rebounds < 16</s> | {
"answer": "SELECT COUNT(points) FROM table_name_83 WHERE assists = 5 AND rebounds < 16",
"context": "CREATE TABLE table_name_83 (points VARCHAR, assists VARCHAR, rebounds VARCHAR)",
"question": "How many points were there when there were less than 16 rebounds and 5 assists?"
} |
### QUESTION
How many minutes were played when there were 18 points and the opponent was Chicago Bulls?
### CONTEXT
CREATE TABLE table_name_55 (minutes_played VARCHAR, points VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(minutes_played) FROM table_name_55 WHERE points = 18 AND opponent = "chicago bulls"</s> | {
"answer": "SELECT COUNT(minutes_played) FROM table_name_55 WHERE points = 18 AND opponent = \"chicago bulls\"",
"context": "CREATE TABLE table_name_55 (minutes_played VARCHAR, points VARCHAR, opponent VARCHAR)",
"question": "How many minutes were played when there were 18 points and the opponent was Chicago Bulls?"
} |
### QUESTION
Which Mountain Peak has a Region of baja california, and a Location of 28.1301°n 115.2206°w?
### CONTEXT
CREATE TABLE table_name_87 (mountain_peak VARCHAR, region VARCHAR, location VARCHAR)
### ANSWER
SELECT mountain_peak FROM table_name_87 WHERE region = "baja california" AND location = "28.1301°n 115.2206°w"</s> | {
"answer": "SELECT mountain_peak FROM table_name_87 WHERE region = \"baja california\" AND location = \"28.1301°n 115.2206°w\"",
"context": "CREATE TABLE table_name_87 (mountain_peak VARCHAR, region VARCHAR, location VARCHAR)",
"question": "Which Mountain Peak has a Region of baja california, and a Location of 28.1301°n 115.2206°w?"
} |
### QUESTION
What Championship had a winning score of 69-71-67-68=275?
### CONTEXT
CREATE TABLE table_name_9 (championship VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT championship FROM table_name_9 WHERE winning_score = 69 - 71 - 67 - 68 = 275</s> | {
"answer": "SELECT championship FROM table_name_9 WHERE winning_score = 69 - 71 - 67 - 68 = 275",
"context": "CREATE TABLE table_name_9 (championship VARCHAR, winning_score VARCHAR)",
"question": "What Championship had a winning score of 69-71-67-68=275?"
} |
### QUESTION
what is the record when the opponent is jeff williams?
### CONTEXT
CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_name_37 WHERE opponent = "jeff williams"</s> | {
"answer": "SELECT record FROM table_name_37 WHERE opponent = \"jeff williams\"",
"context": "CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)",
"question": "what is the record when the opponent is jeff williams?"
} |
### QUESTION
What is High Rebounds, when High Assists is "Jason Kidd (13)"?
### CONTEXT
CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_name_50 WHERE high_assists = "jason kidd (13)"</s> | {
"answer": "SELECT high_rebounds FROM table_name_50 WHERE high_assists = \"jason kidd (13)\"",
"context": "CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR)",
"question": "What is High Rebounds, when High Assists is \"Jason Kidd (13)\"?"
} |
### QUESTION
What is the Game number on March 30?
### CONTEXT
CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)
### ANSWER
SELECT game FROM table_name_33 WHERE date = "march 30"</s> | {
"answer": "SELECT game FROM table_name_33 WHERE date = \"march 30\"",
"context": "CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)",
"question": "What is the Game number on March 30?"
} |
### QUESTION
What is the Result of Game 3?
### CONTEXT
CREATE TABLE table_name_16 (result VARCHAR, game VARCHAR)
### ANSWER
SELECT result FROM table_name_16 WHERE game = "game 3"</s> | {
"answer": "SELECT result FROM table_name_16 WHERE game = \"game 3\"",
"context": "CREATE TABLE table_name_16 (result VARCHAR, game VARCHAR)",
"question": "What is the Result of Game 3?"
} |
### QUESTION
Which Home has an Away of hispano?
### CONTEXT
CREATE TABLE table_name_62 (home VARCHAR, away VARCHAR)
### ANSWER
SELECT home FROM table_name_62 WHERE away = "hispano"</s> | {
"answer": "SELECT home FROM table_name_62 WHERE away = \"hispano\"",
"context": "CREATE TABLE table_name_62 (home VARCHAR, away VARCHAR)",
"question": "Which Home has an Away of hispano?"
} |
### QUESTION
What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?
### CONTEXT
CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR)
### ANSWER
SELECT outcome FROM table_name_63 WHERE opponent = "victoria azarenka" AND score = "6–2, 2–6, 7–5"</s> | {
"answer": "SELECT outcome FROM table_name_63 WHERE opponent = \"victoria azarenka\" AND score = \"6–2, 2–6, 7–5\"",
"context": "CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR)",
"question": "What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?"
} |
### QUESTION
What was the result on october 8, 1961?
### CONTEXT
CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_49 WHERE date = "october 8, 1961"</s> | {
"answer": "SELECT result FROM table_name_49 WHERE date = \"october 8, 1961\"",
"context": "CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)",
"question": "What was the result on october 8, 1961?"
} |
### QUESTION
Who was the runner-up in the RR Donnelley LPGA Founders Cup?
### CONTEXT
CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_52 WHERE tournament = "rr donnelley lpga founders cup"</s> | {
"answer": "SELECT runner_s__up FROM table_name_52 WHERE tournament = \"rr donnelley lpga founders cup\"",
"context": "CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR)",
"question": "Who was the runner-up in the RR Donnelley LPGA Founders Cup?"
} |
### QUESTION
who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?
### CONTEXT
CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR)
### ANSWER
SELECT opponent FROM table_name_93 WHERE surface = "clay" AND outcome = "winner" AND championship = "estoril" AND date = "15 april 1996"</s> | {
"answer": "SELECT opponent FROM table_name_93 WHERE surface = \"clay\" AND outcome = \"winner\" AND championship = \"estoril\" AND date = \"15 april 1996\"",
"context": "CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR)",
"question": "who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?"
} |
### QUESTION
What was the average number of attendance for the game on November 29, 1981 played after week 13?
### CONTEXT
CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_40 WHERE date = "november 29, 1981" AND week > 13</s> | {
"answer": "SELECT AVG(attendance) FROM table_name_40 WHERE date = \"november 29, 1981\" AND week > 13",
"context": "CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR)",
"question": "What was the average number of attendance for the game on November 29, 1981 played after week 13?"
} |
### QUESTION
What is the score of the game with Falkirk as the runner-up?
### CONTEXT
CREATE TABLE table_name_48 (score VARCHAR, runner_up VARCHAR)
### ANSWER
SELECT score FROM table_name_48 WHERE runner_up = "falkirk"</s> | {
"answer": "SELECT score FROM table_name_48 WHERE runner_up = \"falkirk\"",
"context": "CREATE TABLE table_name_48 (score VARCHAR, runner_up VARCHAR)",
"question": "What is the score of the game with Falkirk as the runner-up?"
} |
### QUESTION
Which Week has an Opponent of pittsburgh steelers, and an Attendance larger than 47,727?
### CONTEXT
CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
### ANSWER
SELECT MIN(week) FROM table_name_69 WHERE opponent = "pittsburgh steelers" AND attendance > 47 OFFSET 727</s> | {
"answer": "SELECT MIN(week) FROM table_name_69 WHERE opponent = \"pittsburgh steelers\" AND attendance > 47 OFFSET 727",
"context": "CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR, attendance VARCHAR)",
"question": "Which Week has an Opponent of pittsburgh steelers, and an Attendance larger than 47,727?"
} |
### QUESTION
What is the Population of the New Bandon Parish with an Area km 2 larger than 326.76?
### CONTEXT
CREATE TABLE table_name_97 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)
### ANSWER
SELECT MAX(population) FROM table_name_97 WHERE area_km_2 > 326.76 AND official_name = "new bandon"</s> | {
"answer": "SELECT MAX(population) FROM table_name_97 WHERE area_km_2 > 326.76 AND official_name = \"new bandon\"",
"context": "CREATE TABLE table_name_97 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)",
"question": "What is the Population of the New Bandon Parish with an Area km 2 larger than 326.76?"
} |
### QUESTION
What is the Area of the Allardville Parish with a Population smaller than 2,151?
### CONTEXT
CREATE TABLE table_name_10 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)
### ANSWER
SELECT SUM(area_km_2) FROM table_name_10 WHERE official_name = "allardville" AND population < 2 OFFSET 151</s> | {
"answer": "SELECT SUM(area_km_2) FROM table_name_10 WHERE official_name = \"allardville\" AND population < 2 OFFSET 151",
"context": "CREATE TABLE table_name_10 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR)",
"question": "What is the Area of the Allardville Parish with a Population smaller than 2,151?"
} |
### QUESTION
What is the name of team 1 that was after the 2005 season and with a 4-2 score?
### CONTEXT
CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR)
### ANSWER
SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = "4-2"</s> | {
"answer": "SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = \"4-2\"",
"context": "CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR)",
"question": "What is the name of team 1 that was after the 2005 season and with a 4-2 score?"
} |
### QUESTION
How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?
### CONTEXT
CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(total_rebounds) FROM table_name_5 WHERE player = "andre gaddy" AND rank < 6</s> | {
"answer": "SELECT COUNT(total_rebounds) FROM table_name_5 WHERE player = \"andre gaddy\" AND rank < 6",
"context": "CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR)",
"question": "How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?"
} |
### QUESTION
What was the crowd size for the game with a score of 101-105?
### CONTEXT
CREATE TABLE table_name_13 (crowd VARCHAR, score VARCHAR)
### ANSWER
SELECT crowd FROM table_name_13 WHERE score = "101-105"</s> | {
"answer": "SELECT crowd FROM table_name_13 WHERE score = \"101-105\"",
"context": "CREATE TABLE table_name_13 (crowd VARCHAR, score VARCHAR)",
"question": "What was the crowd size for the game with a score of 101-105?"
} |
### QUESTION
What is City of License, when Frequency MHz is less than 102.5?
### CONTEXT
CREATE TABLE table_name_8 (city_of_license VARCHAR, frequency_mhz INTEGER)
### ANSWER
SELECT city_of_license FROM table_name_8 WHERE frequency_mhz < 102.5</s> | {
"answer": "SELECT city_of_license FROM table_name_8 WHERE frequency_mhz < 102.5",
"context": "CREATE TABLE table_name_8 (city_of_license VARCHAR, frequency_mhz INTEGER)",
"question": "What is City of License, when Frequency MHz is less than 102.5?"
} |
### QUESTION
What is Call Sign, when City of License is Brownfield, Texas?
### CONTEXT
CREATE TABLE table_name_51 (call_sign VARCHAR, city_of_license VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_51 WHERE city_of_license = "brownfield, texas"</s> | {
"answer": "SELECT call_sign FROM table_name_51 WHERE city_of_license = \"brownfield, texas\"",
"context": "CREATE TABLE table_name_51 (call_sign VARCHAR, city_of_license VARCHAR)",
"question": "What is Call Sign, when City of License is Brownfield, Texas?"
} |
### QUESTION
What is the overall pick number for a draft pick smaller than 9, named buck mystrom from Michigan State college?
### CONTEXT
CREATE TABLE table_name_72 (overall VARCHAR, name VARCHAR, pick VARCHAR, college VARCHAR)
### ANSWER
SELECT overall FROM table_name_72 WHERE pick < 9 AND college = "michigan state" AND name = "buck mystrom"</s> | {
"answer": "SELECT overall FROM table_name_72 WHERE pick < 9 AND college = \"michigan state\" AND name = \"buck mystrom\"",
"context": "CREATE TABLE table_name_72 (overall VARCHAR, name VARCHAR, pick VARCHAR, college VARCHAR)",
"question": "What is the overall pick number for a draft pick smaller than 9, named buck mystrom from Michigan State college?"
} |
### QUESTION
What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?
### CONTEXT
CREATE TABLE table_name_60 (evening_gown VARCHAR, preliminary VARCHAR, average VARCHAR, country VARCHAR)
### ANSWER
SELECT COUNT(evening_gown) FROM table_name_60 WHERE average > 8.984 AND country = "louisiana" AND preliminary > 8.597</s> | {
"answer": "SELECT COUNT(evening_gown) FROM table_name_60 WHERE average > 8.984 AND country = \"louisiana\" AND preliminary > 8.597",
"context": "CREATE TABLE table_name_60 (evening_gown VARCHAR, preliminary VARCHAR, average VARCHAR, country VARCHAR)",
"question": "What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?"
} |
### QUESTION
What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?
### CONTEXT
CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR)
### ANSWER
SELECT COUNT(swimsuit) FROM table_name_98 WHERE preliminary = 8.721 AND average > 8.781</s> | {
"answer": "SELECT COUNT(swimsuit) FROM table_name_98 WHERE preliminary = 8.721 AND average > 8.781",
"context": "CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR)",
"question": "What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?"
} |
### QUESTION
Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?
### CONTEXT
CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)
### ANSWER
SELECT partner FROM table_name_64 WHERE score = "6–3, 7–6 (7–3)"</s> | {
"answer": "SELECT partner FROM table_name_64 WHERE score = \"6–3, 7–6 (7–3)\"",
"context": "CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)",
"question": "Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?"
} |
### QUESTION
What was the attendance for the home team of Walsall?
### CONTEXT
CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)
### ANSWER
SELECT attendance FROM table_name_48 WHERE home_team = "walsall"</s> | {
"answer": "SELECT attendance FROM table_name_48 WHERE home_team = \"walsall\"",
"context": "CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)",
"question": "What was the attendance for the home team of Walsall?"
} |
### QUESTION
What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?
### CONTEXT
CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade"</s> | {
"answer": "SELECT tournament FROM table_name_33 WHERE partner = \"nicole thijssen\" AND opponent_in_the_final = \"nina bratchikova & frederica piedade\"",
"context": "CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)",
"question": "What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?"
} |
### QUESTION
what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)?
### CONTEXT
CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = "amy alcott" AND winning_score = –9(72 - 68 - 67 = 207)</s> | {
"answer": "SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = \"amy alcott\" AND winning_score = –9(72 - 68 - 67 = 207)",
"context": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)",
"question": "what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)?"
} |
### QUESTION
What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?
### CONTEXT
CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)
### ANSWER
SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01</s> | {
"answer": "SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = \"vancouver, bc\" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01",
"context": "CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)",
"question": "What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?"
} |
### QUESTION
What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?
### CONTEXT
CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR)
### ANSWER
SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10</s> | {
"answer": "SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10",
"context": "CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR)",
"question": "What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?"
} |
### QUESTION
What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens?
### CONTEXT
CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)
### ANSWER
SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = "son of jens"</s> | {
"answer": "SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = \"son of jens\"",
"context": "CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)",
"question": "What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens?"
} |
### QUESTION
WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER?
### CONTEXT
CREATE TABLE table_name_74 (college VARCHAR, round VARCHAR, player VARCHAR)
### ANSWER
SELECT college FROM table_name_74 WHERE round > 9 AND player = "butch webster"</s> | {
"answer": "SELECT college FROM table_name_74 WHERE round > 9 AND player = \"butch webster\"",
"context": "CREATE TABLE table_name_74 (college VARCHAR, round VARCHAR, player VARCHAR)",
"question": "WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER?"
} |
### QUESTION
What sum of game has an attendance of 18,690?
### CONTEXT
CREATE TABLE table_name_40 (game INTEGER, attendance VARCHAR)
### ANSWER
SELECT SUM(game) FROM table_name_40 WHERE attendance = 18 OFFSET 690</s> | {
"answer": "SELECT SUM(game) FROM table_name_40 WHERE attendance = 18 OFFSET 690",
"context": "CREATE TABLE table_name_40 (game INTEGER, attendance VARCHAR)",
"question": "What sum of game has an attendance of 18,690?"
} |
### QUESTION
Which Country has a Place of t9, and a Score of 71-71-72=214, and a Player of ernie els?
### CONTEXT
CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)
### ANSWER
SELECT country FROM table_name_95 WHERE place = "t9" AND score = 71 - 71 - 72 = 214 AND player = "ernie els"</s> | {
"answer": "SELECT country FROM table_name_95 WHERE place = \"t9\" AND score = 71 - 71 - 72 = 214 AND player = \"ernie els\"",
"context": "CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)",
"question": "Which Country has a Place of t9, and a Score of 71-71-72=214, and a Player of ernie els?"
} |
### QUESTION
Which To par has a Country of united states, and a Player of duffy waldorf?
### CONTEXT
CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_22 WHERE country = "united states" AND player = "duffy waldorf"</s> | {
"answer": "SELECT to_par FROM table_name_22 WHERE country = \"united states\" AND player = \"duffy waldorf\"",
"context": "CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, player VARCHAR)",
"question": "Which To par has a Country of united states, and a Player of duffy waldorf?"
} |
### QUESTION
What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?
### CONTEXT
CREATE TABLE table_name_79 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
### ANSWER
SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99</s> | {
"answer": "SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99",
"context": "CREATE TABLE table_name_79 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)",
"question": "What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?"
} |
### QUESTION
What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets?
### CONTEXT
CREATE TABLE table_name_34 (market_value__billion_ VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
### ANSWER
SELECT COUNT(market_value__billion_) AS $_ FROM table_name_34 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ < 166.99</s> | {
"answer": "SELECT COUNT(market_value__billion_) AS $_ FROM table_name_34 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ < 166.99",
"context": "CREATE TABLE table_name_34 (market_value__billion_ VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)",
"question": "What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets?"
} |
### QUESTION
What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?
### CONTEXT
CREATE TABLE table_name_70 (assets__billion_ INTEGER, company VARCHAR, sales__billion_$_ VARCHAR)
### ANSWER
SELECT AVG(assets__billion_) AS $_ FROM table_name_70 WHERE company = "bank of america" AND sales__billion_$_ < 49.01</s> | {
"answer": "SELECT AVG(assets__billion_) AS $_ FROM table_name_70 WHERE company = \"bank of america\" AND sales__billion_$_ < 49.01",
"context": "CREATE TABLE table_name_70 (assets__billion_ INTEGER, company VARCHAR, sales__billion_$_ VARCHAR)",
"question": "What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?"
} |
### QUESTION
Which Year has a Category of best original song (รอเธอหันมา – โฟกัส จิระกุล)?
### CONTEXT
CREATE TABLE table_name_58 (year INTEGER, category VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_58 WHERE category = "best original song (รอเธอหันมา – โฟกัส จิระกุล)"</s> | {
"answer": "SELECT MAX(year) FROM table_name_58 WHERE category = \"best original song (รอเธอหันมา – โฟกัส จิระกุล)\"",
"context": "CREATE TABLE table_name_58 (year INTEGER, category VARCHAR)",
"question": "Which Year has a Category of best original song (รอเธอหันมา – โฟกัส จิระกุล)?"
} |
### QUESTION
Which Total has a Nation of united states, and a Bronze larger than 3?
### CONTEXT
CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, bronze VARCHAR)
### ANSWER
SELECT MAX(total) FROM table_name_4 WHERE nation = "united states" AND bronze > 3</s> | {
"answer": "SELECT MAX(total) FROM table_name_4 WHERE nation = \"united states\" AND bronze > 3",
"context": "CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, bronze VARCHAR)",
"question": "Which Total has a Nation of united states, and a Bronze larger than 3?"
} |
### QUESTION
Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?
### CONTEXT
CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)
### ANSWER
SELECT year FROM table_name_7 WHERE award = "17th bangkok critics assembly awards" AND category = "best original score"</s> | {
"answer": "SELECT year FROM table_name_7 WHERE award = \"17th bangkok critics assembly awards\" AND category = \"best original score\"",
"context": "CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)",
"question": "Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score?"
} |
### QUESTION
Where were jamie cox & scott kremerskothen paired?
### CONTEXT
CREATE TABLE table_name_24 (venue VARCHAR, batsmen VARCHAR)
### ANSWER
SELECT venue FROM table_name_24 WHERE batsmen = "jamie cox & scott kremerskothen"</s> | {
"answer": "SELECT venue FROM table_name_24 WHERE batsmen = \"jamie cox & scott kremerskothen\"",
"context": "CREATE TABLE table_name_24 (venue VARCHAR, batsmen VARCHAR)",
"question": "Where were jamie cox & scott kremerskothen paired?"
} |
### QUESTION
On December 12, 2001, how many weeks had the single been in its position?
### CONTEXT
CREATE TABLE table_name_18 (weeks VARCHAR, date VARCHAR)
### ANSWER
SELECT weeks FROM table_name_18 WHERE date = "december 12, 2001"</s> | {
"answer": "SELECT weeks FROM table_name_18 WHERE date = \"december 12, 2001\"",
"context": "CREATE TABLE table_name_18 (weeks VARCHAR, date VARCHAR)",
"question": "On December 12, 2001, how many weeks had the single been in its position?"
} |
### QUESTION
What is the sum of attendance when the result was l 16-13?
### CONTEXT
CREATE TABLE table_name_54 (attendance INTEGER, result VARCHAR)
### ANSWER
SELECT SUM(attendance) FROM table_name_54 WHERE result = "l 16-13"</s> | {
"answer": "SELECT SUM(attendance) FROM table_name_54 WHERE result = \"l 16-13\"",
"context": "CREATE TABLE table_name_54 (attendance INTEGER, result VARCHAR)",
"question": "What is the sum of attendance when the result was l 16-13?"
} |
### QUESTION
Which show was nominated for the ITA Milestone Award at the Indian Television Academy Awards?
### CONTEXT
CREATE TABLE table_name_85 (show VARCHAR, award_ceremony VARCHAR, category VARCHAR)
### ANSWER
SELECT show FROM table_name_85 WHERE award_ceremony = "indian television academy awards" AND category = "ita milestone award"</s> | {
"answer": "SELECT show FROM table_name_85 WHERE award_ceremony = \"indian television academy awards\" AND category = \"ita milestone award\"",
"context": "CREATE TABLE table_name_85 (show VARCHAR, award_ceremony VARCHAR, category VARCHAR)",
"question": "Which show was nominated for the ITA Milestone Award at the Indian Television Academy Awards?"
} |
### QUESTION
For the event held in Tartu, Estonia, what is the name of the runner-up?
### CONTEXT
CREATE TABLE table_name_90 (runner_up VARCHAR, venue VARCHAR)
### ANSWER
SELECT runner_up FROM table_name_90 WHERE venue = "tartu, estonia"</s> | {
"answer": "SELECT runner_up FROM table_name_90 WHERE venue = \"tartu, estonia\"",
"context": "CREATE TABLE table_name_90 (runner_up VARCHAR, venue VARCHAR)",
"question": "For the event held in Tartu, Estonia, what is the name of the runner-up?"
} |
### QUESTION
Which Clock Multiplier has a Clock Speed of 1.6 ghz, and a Model Number of c7-m 764?
### CONTEXT
CREATE TABLE table_name_69 (clock_multiplier VARCHAR, clock_speed VARCHAR, model_number VARCHAR)
### ANSWER
SELECT clock_multiplier FROM table_name_69 WHERE clock_speed = "1.6 ghz" AND model_number = "c7-m 764"</s> | {
"answer": "SELECT clock_multiplier FROM table_name_69 WHERE clock_speed = \"1.6 ghz\" AND model_number = \"c7-m 764\"",
"context": "CREATE TABLE table_name_69 (clock_multiplier VARCHAR, clock_speed VARCHAR, model_number VARCHAR)",
"question": "Which Clock Multiplier has a Clock Speed of 1.6 ghz, and a Model Number of c7-m 764?"
} |
### QUESTION
When Bunky Henry of the United States scored higher than 67 and his To par was e, what was his place?
### CONTEXT
CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR, country VARCHAR)
### ANSWER
SELECT place FROM table_name_18 WHERE score > 67 AND country = "united states" AND to_par = "e" AND player = "bunky henry"</s> | {
"answer": "SELECT place FROM table_name_18 WHERE score > 67 AND country = \"united states\" AND to_par = \"e\" AND player = \"bunky henry\"",
"context": "CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR, country VARCHAR)",
"question": "When Bunky Henry of the United States scored higher than 67 and his To par was e, what was his place?"
} |
### QUESTION
Who was the lead with John Shuster as skip in the season of 2009–10?
### CONTEXT
CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)
### ANSWER
SELECT lead FROM table_name_83 WHERE skip = "john shuster" AND season = "2009–10"</s> | {
"answer": "SELECT lead FROM table_name_83 WHERE skip = \"john shuster\" AND season = \"2009–10\"",
"context": "CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)",
"question": "Who was the lead with John Shuster as skip in the season of 2009–10?"
} |
### QUESTION
Which player(s) is from South Africa?
### CONTEXT
CREATE TABLE table_name_76 (player VARCHAR, country VARCHAR)
### ANSWER
SELECT player FROM table_name_76 WHERE country = "south africa"</s> | {
"answer": "SELECT player FROM table_name_76 WHERE country = \"south africa\"",
"context": "CREATE TABLE table_name_76 (player VARCHAR, country VARCHAR)",
"question": "Which player(s) is from South Africa?"
} |
### QUESTION
What is the frequency of the radio station in Indiana that has a call sign of WGNR?
### CONTEXT
CREATE TABLE table_name_70 (frequency VARCHAR, state VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT frequency FROM table_name_70 WHERE state = "indiana" AND call_sign = "wgnr"</s> | {
"answer": "SELECT frequency FROM table_name_70 WHERE state = \"indiana\" AND call_sign = \"wgnr\"",
"context": "CREATE TABLE table_name_70 (frequency VARCHAR, state VARCHAR, call_sign VARCHAR)",
"question": "What is the frequency of the radio station in Indiana that has a call sign of WGNR?"
} |
### QUESTION
What is the frequency of the radio station with a call sign of WGNR-FM?
### CONTEXT
CREATE TABLE table_name_19 (frequency VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT frequency FROM table_name_19 WHERE call_sign = "wgnr-fm"</s> | {
"answer": "SELECT frequency FROM table_name_19 WHERE call_sign = \"wgnr-fm\"",
"context": "CREATE TABLE table_name_19 (frequency VARCHAR, call_sign VARCHAR)",
"question": "What is the frequency of the radio station with a call sign of WGNR-FM?"
} |
### QUESTION
What is the call sign for 90.9 FM which is in Florida?
### CONTEXT
CREATE TABLE table_name_87 (call_sign VARCHAR, state VARCHAR, frequency VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_87 WHERE state = "florida" AND frequency = "90.9 fm"</s> | {
"answer": "SELECT call_sign FROM table_name_87 WHERE state = \"florida\" AND frequency = \"90.9 fm\"",
"context": "CREATE TABLE table_name_87 (call_sign VARCHAR, state VARCHAR, frequency VARCHAR)",
"question": "What is the call sign for 90.9 FM which is in Florida?"
} |
### QUESTION
In the Indianapolis Sweepstakes race session, what is the championship?
### CONTEXT
CREATE TABLE table_name_72 (championship VARCHAR, session VARCHAR, event VARCHAR)
### ANSWER
SELECT championship FROM table_name_72 WHERE session = "race" AND event = "indianapolis sweepstakes"</s> | {
"answer": "SELECT championship FROM table_name_72 WHERE session = \"race\" AND event = \"indianapolis sweepstakes\"",
"context": "CREATE TABLE table_name_72 (championship VARCHAR, session VARCHAR, event VARCHAR)",
"question": "In the Indianapolis Sweepstakes race session, what is the championship?"
} |
### QUESTION
How much Population density (per km²) has a Name of total northern villages, and a Population (2006) larger than 11414?
### CONTEXT
CREATE TABLE table_name_98 (population_density__per_km²_ VARCHAR, name VARCHAR, population__2006_ VARCHAR)
### ANSWER
SELECT COUNT(population_density__per_km²_) FROM table_name_98 WHERE name = "total northern villages" AND population__2006_ > 11414</s> | {
"answer": "SELECT COUNT(population_density__per_km²_) FROM table_name_98 WHERE name = \"total northern villages\" AND population__2006_ > 11414",
"context": "CREATE TABLE table_name_98 (population_density__per_km²_ VARCHAR, name VARCHAR, population__2006_ VARCHAR)",
"question": "How much Population density (per km²) has a Name of total northern villages, and a Population (2006) larger than 11414?"
} |
### QUESTION
What is the Location of the Frequency with a Callsign of DXBL?
### CONTEXT
CREATE TABLE table_name_89 (location VARCHAR, callsign VARCHAR)
### ANSWER
SELECT location FROM table_name_89 WHERE callsign = "dxbl"</s> | {
"answer": "SELECT location FROM table_name_89 WHERE callsign = \"dxbl\"",
"context": "CREATE TABLE table_name_89 (location VARCHAR, callsign VARCHAR)",
"question": "What is the Location of the Frequency with a Callsign of DXBL?"
} |
### QUESTION
What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South?
### CONTEXT
CREATE TABLE table_name_17 (enrollment INTEGER, left VARCHAR, current_conference VARCHAR)
### ANSWER
SELECT MIN(enrollment) FROM table_name_17 WHERE left = 2012 AND current_conference = "mid-south"</s> | {
"answer": "SELECT MIN(enrollment) FROM table_name_17 WHERE left = 2012 AND current_conference = \"mid-south\"",
"context": "CREATE TABLE table_name_17 (enrollment INTEGER, left VARCHAR, current_conference VARCHAR)",
"question": "What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South?"
} |
### QUESTION
Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?
### CONTEXT
CREATE TABLE table_name_40 (season INTEGER, score VARCHAR, venue VARCHAR)
### ANSWER
SELECT SUM(season) FROM table_name_40 WHERE score = "1:3" AND venue = "national stadium, maldives"</s> | {
"answer": "SELECT SUM(season) FROM table_name_40 WHERE score = \"1:3\" AND venue = \"national stadium, maldives\"",
"context": "CREATE TABLE table_name_40 (season INTEGER, score VARCHAR, venue VARCHAR)",
"question": "Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?"
} |
### QUESTION
What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?
### CONTEXT
CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR)
### ANSWER
SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637</s> | {
"answer": "SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637",
"context": "CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR)",
"question": "What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?"
} |
### QUESTION
Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne?
### CONTEXT
CREATE TABLE table_name_48 (opposing_team VARCHAR, venue VARCHAR, against VARCHAR, status VARCHAR)
### ANSWER
SELECT opposing_team FROM table_name_48 WHERE against < 42 AND status = "tour match" AND venue = "rugby park, gisborne"</s> | {
"answer": "SELECT opposing_team FROM table_name_48 WHERE against < 42 AND status = \"tour match\" AND venue = \"rugby park, gisborne\"",
"context": "CREATE TABLE table_name_48 (opposing_team VARCHAR, venue VARCHAR, against VARCHAR, status VARCHAR)",
"question": "Which opposing team had an Against score less than 42 and a Tour Match status in Rugby Park, Gisborne?"
} |
### QUESTION
What shows for 1992 when 1988 is A, at the Australian Open?
### CONTEXT
CREATE TABLE table_name_43 (tournament VARCHAR)
### ANSWER
SELECT 1992 FROM table_name_43 WHERE 1988 = "a" AND tournament = "australian open"</s> | {
"answer": "SELECT 1992 FROM table_name_43 WHERE 1988 = \"a\" AND tournament = \"australian open\"",
"context": "CREATE TABLE table_name_43 (tournament VARCHAR)",
"question": "What shows for 1992 when 1988 is A, at the Australian Open?"
} |
### QUESTION
What is Result, when Venue is Götzis , Austria?
### CONTEXT
CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR)
### ANSWER
SELECT result FROM table_name_77 WHERE venue = "götzis , austria"</s> | {
"answer": "SELECT result FROM table_name_77 WHERE venue = \"götzis , austria\"",
"context": "CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR)",
"question": "What is Result, when Venue is Götzis , Austria?"
} |
### QUESTION
When did the United Kingdom format a stereo LP?
### CONTEXT
CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR)
### ANSWER
SELECT date FROM table_name_29 WHERE region = "united kingdom" AND format = "stereo lp"</s> | {
"answer": "SELECT date FROM table_name_29 WHERE region = \"united kingdom\" AND format = \"stereo lp\"",
"context": "CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR)",
"question": "When did the United Kingdom format a stereo LP?"
} |
### QUESTION
What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2?
### CONTEXT
CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR)
### ANSWER
SELECT SUM(attendance) FROM table_name_83 WHERE location = "oakland-alameda county coliseum" AND game = 2</s> | {
"answer": "SELECT SUM(attendance) FROM table_name_83 WHERE location = \"oakland-alameda county coliseum\" AND game = 2",
"context": "CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR)",
"question": "What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2?"
} |
### QUESTION
What region goes along with January 1974?
### CONTEXT
CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR)
### ANSWER
SELECT region FROM table_name_93 WHERE date = "january 1974"</s> | {
"answer": "SELECT region FROM table_name_93 WHERE date = \"january 1974\"",
"context": "CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR)",
"question": "What region goes along with January 1974?"
} |
### QUESTION
What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?
### CONTEXT
CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = "dan dierking" AND gain > 34</s> | {
"answer": "SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = \"dan dierking\" AND gain > 34",
"context": "CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR)",
"question": "What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?"
} |
### QUESTION
What is Score, when Country is "United States", and when To Par is "+4"?
### CONTEXT
CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR)
### ANSWER
SELECT score FROM table_name_56 WHERE country = "united states" AND to_par = "+4"</s> | {
"answer": "SELECT score FROM table_name_56 WHERE country = \"united states\" AND to_par = \"+4\"",
"context": "CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR)",
"question": "What is Score, when Country is \"United States\", and when To Par is \"+4\"?"
} |
### QUESTION
Which lead had a season of 2009-10?
### CONTEXT
CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR)
### ANSWER
SELECT lead FROM table_name_40 WHERE season = "2009-10"</s> | {
"answer": "SELECT lead FROM table_name_40 WHERE season = \"2009-10\"",
"context": "CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR)",
"question": "Which lead had a season of 2009-10?"
} |
### QUESTION
Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express?
### CONTEXT
CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR)
### ANSWER
SELECT evening FROM table_name_18 WHERE sunday = "no" AND name = "s. vidal/plant express"</s> | {
"answer": "SELECT evening FROM table_name_18 WHERE sunday = \"no\" AND name = \"s. vidal/plant express\"",
"context": "CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR)",
"question": "Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express?"
} |
### QUESTION
What was the GP-GS for the 2009 season?
### CONTEXT
CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR)
### ANSWER
SELECT gp_gs FROM table_name_52 WHERE season = "2009"</s> | {
"answer": "SELECT gp_gs FROM table_name_52 WHERE season = \"2009\"",
"context": "CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR)",
"question": "What was the GP-GS for the 2009 season?"
} |
### QUESTION
After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards?
### CONTEXT
CREATE TABLE table_name_78 (nationality VARCHAR, year VARCHAR, player VARCHAR)
### ANSWER
SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = "dwayne de rosario category:articles with hcards"</s> | {
"answer": "SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = \"dwayne de rosario category:articles with hcards\"",
"context": "CREATE TABLE table_name_78 (nationality VARCHAR, year VARCHAR, player VARCHAR)",
"question": "After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards?"
} |
### QUESTION
What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality?
### CONTEXT
CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR)
### ANSWER
SELECT position FROM table_name_36 WHERE nationality = "united states" AND player = "justin mapp category:articles with hcards"</s> | {
"answer": "SELECT position FROM table_name_36 WHERE nationality = \"united states\" AND player = \"justin mapp category:articles with hcards\"",
"context": "CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR)",
"question": "What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality?"
} |
### QUESTION
What is the Location Attendance, when High Points is "D. McKey (24)", and when Score is "L 96-105"?
### CONTEXT
CREATE TABLE table_name_55 (location_attendance VARCHAR, high_points VARCHAR, score VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_55 WHERE high_points = "d. mckey (24)" AND score = "l 96-105"</s> | {
"answer": "SELECT location_attendance FROM table_name_55 WHERE high_points = \"d. mckey (24)\" AND score = \"l 96-105\"",
"context": "CREATE TABLE table_name_55 (location_attendance VARCHAR, high_points VARCHAR, score VARCHAR)",
"question": "What is the Location Attendance, when High Points is \"D. McKey (24)\", and when Score is \"L 96-105\"?"
} |
### QUESTION
How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?
### CONTEXT
CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)
### ANSWER
SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7</s> | {
"answer": "SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7",
"context": "CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)",
"question": "How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?"
} |
Subsets and Splits