text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is Score, when Country is "United States", when Place is "T9", and when Player is "Jay Hebert"?
### CONTEXT
CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
### ANSWER
SELECT score FROM table_name_28 WHERE country = "united states" AND place = "t9" AND player = "jay hebert"</s> | {
"answer": "SELECT score FROM table_name_28 WHERE country = \"united states\" AND place = \"t9\" AND player = \"jay hebert\"",
"context": "CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)",
"question": "What is Score, when Country is \"United States\", when Place is \"T9\", and when Player is \"Jay Hebert\"?"
} |
### QUESTION
What kind of Pada 4 has a Pada 1 of खी ju/khi?
### CONTEXT
CREATE TABLE table_name_90 (pada_4 VARCHAR, pada_1 VARCHAR)
### ANSWER
SELECT pada_4 FROM table_name_90 WHERE pada_1 = "खी ju/khi"</s> | {
"answer": "SELECT pada_4 FROM table_name_90 WHERE pada_1 = \"खी ju/khi\"",
"context": "CREATE TABLE table_name_90 (pada_4 VARCHAR, pada_1 VARCHAR)",
"question": "What kind of Pada 4 has a Pada 1 of खी ju/khi?"
} |
### QUESTION
Which Date has a Record of 3-4?
### CONTEXT
CREATE TABLE table_name_30 (date VARCHAR, record VARCHAR)
### ANSWER
SELECT date FROM table_name_30 WHERE record = "3-4"</s> | {
"answer": "SELECT date FROM table_name_30 WHERE record = \"3-4\"",
"context": "CREATE TABLE table_name_30 (date VARCHAR, record VARCHAR)",
"question": "Which Date has a Record of 3-4?"
} |
### QUESTION
What is the record for opponent Anna Barone?
### CONTEXT
CREATE TABLE table_name_24 (record VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_name_24 WHERE opponent = "anna barone"</s> | {
"answer": "SELECT record FROM table_name_24 WHERE opponent = \"anna barone\"",
"context": "CREATE TABLE table_name_24 (record VARCHAR, opponent VARCHAR)",
"question": "What is the record for opponent Anna Barone?"
} |
### QUESTION
What is the location of the match with Aron Lofton as the opponent?
### CONTEXT
CREATE TABLE table_name_29 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_29 WHERE opponent = "aron lofton"</s> | {
"answer": "SELECT location FROM table_name_29 WHERE opponent = \"aron lofton\"",
"context": "CREATE TABLE table_name_29 (location VARCHAR, opponent VARCHAR)",
"question": "What is the location of the match with Aron Lofton as the opponent?"
} |
### QUESTION
What is the method of the match with 1 round and a time of 1:58?
### CONTEXT
CREATE TABLE table_name_60 (method VARCHAR, round VARCHAR, time VARCHAR)
### ANSWER
SELECT method FROM table_name_60 WHERE round = 1 AND time = "1:58"</s> | {
"answer": "SELECT method FROM table_name_60 WHERE round = 1 AND time = \"1:58\"",
"context": "CREATE TABLE table_name_60 (method VARCHAR, round VARCHAR, time VARCHAR)",
"question": "What is the method of the match with 1 round and a time of 1:58?"
} |
### QUESTION
In which location did the Meca World Vale Tudo 6 event happen?
### CONTEXT
CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)
### ANSWER
SELECT location FROM table_name_84 WHERE event = "meca world vale tudo 6"</s> | {
"answer": "SELECT location FROM table_name_84 WHERE event = \"meca world vale tudo 6\"",
"context": "CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)",
"question": "In which location did the Meca World Vale Tudo 6 event happen?"
} |
### QUESTION
What school/club did gerald wilkins attend?
### CONTEXT
CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT school_club_team FROM table_name_24 WHERE player = "gerald wilkins"</s> | {
"answer": "SELECT school_club_team FROM table_name_24 WHERE player = \"gerald wilkins\"",
"context": "CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR)",
"question": "What school/club did gerald wilkins attend?"
} |
### QUESTION
Which Wins have a Class of 500cc, and a Year smaller than 1975?
### CONTEXT
CREATE TABLE table_name_46 (wins VARCHAR, class VARCHAR, year VARCHAR)
### ANSWER
SELECT wins FROM table_name_46 WHERE class = "500cc" AND year < 1975</s> | {
"answer": "SELECT wins FROM table_name_46 WHERE class = \"500cc\" AND year < 1975",
"context": "CREATE TABLE table_name_46 (wins VARCHAR, class VARCHAR, year VARCHAR)",
"question": "Which Wins have a Class of 500cc, and a Year smaller than 1975?"
} |
### QUESTION
Name the date for loss of ruffin (3-5)
### CONTEXT
CREATE TABLE table_name_44 (date VARCHAR, loss VARCHAR)
### ANSWER
SELECT date FROM table_name_44 WHERE loss = "ruffin (3-5)"</s> | {
"answer": "SELECT date FROM table_name_44 WHERE loss = \"ruffin (3-5)\"",
"context": "CREATE TABLE table_name_44 (date VARCHAR, loss VARCHAR)",
"question": "Name the date for loss of ruffin (3-5)"
} |
### QUESTION
Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×?
### CONTEXT
CREATE TABLE table_name_98 (model_number VARCHAR, multiplier VARCHAR, front_side_bus VARCHAR, l2_cache VARCHAR)
### ANSWER
SELECT model_number FROM table_name_98 WHERE front_side_bus = "100mhz" AND l2_cache = "64kib" AND multiplier = "8.5×"</s> | {
"answer": "SELECT model_number FROM table_name_98 WHERE front_side_bus = \"100mhz\" AND l2_cache = \"64kib\" AND multiplier = \"8.5×\"",
"context": "CREATE TABLE table_name_98 (model_number VARCHAR, multiplier VARCHAR, front_side_bus VARCHAR, l2_cache VARCHAR)",
"question": "Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×?"
} |
### QUESTION
What is Finalists, when Tournament is Miami?
### CONTEXT
CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR)
### ANSWER
SELECT finalists FROM table_name_79 WHERE tournament = "miami"</s> | {
"answer": "SELECT finalists FROM table_name_79 WHERE tournament = \"miami\"",
"context": "CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR)",
"question": "What is Finalists, when Tournament is Miami?"
} |
### QUESTION
What is the undecided percentage of the poll from Suffolk University with Murray at 11%?
### CONTEXT
CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR)
### ANSWER
SELECT undecided FROM table_name_80 WHERE source = "suffolk university" AND murray = "11%"</s> | {
"answer": "SELECT undecided FROM table_name_80 WHERE source = \"suffolk university\" AND murray = \"11%\"",
"context": "CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR)",
"question": "What is the undecided percentage of the poll from Suffolk University with Murray at 11%?"
} |
### QUESTION
What County has a Median household income of $46,872?
### CONTEXT
CREATE TABLE table_name_36 (county VARCHAR, median_household_income VARCHAR)
### ANSWER
SELECT county FROM table_name_36 WHERE median_household_income = "$46,872"</s> | {
"answer": "SELECT county FROM table_name_36 WHERE median_household_income = \"$46,872\"",
"context": "CREATE TABLE table_name_36 (county VARCHAR, median_household_income VARCHAR)",
"question": "What County has a Median household income of $46,872?"
} |
### QUESTION
What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?
### CONTEXT
CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR)
### ANSWER
SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10</s> | {
"answer": "SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10",
"context": "CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR)",
"question": "What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?"
} |
### QUESTION
What is Player, when Country is "United States", and when To Par is "WD"?
### CONTEXT
CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR)
### ANSWER
SELECT player FROM table_name_79 WHERE country = "united states" AND to_par = "wd"</s> | {
"answer": "SELECT player FROM table_name_79 WHERE country = \"united states\" AND to_par = \"wd\"",
"context": "CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR)",
"question": "What is Player, when Country is \"United States\", and when To Par is \"WD\"?"
} |
### QUESTION
What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1?
### CONTEXT
CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR)
### ANSWER
SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1</s> | {
"answer": "SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1",
"context": "CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR)",
"question": "What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1?"
} |
### QUESTION
What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?
### CONTEXT
CREATE TABLE table_name_84 (preliminary INTEGER, interview VARCHAR, average VARCHAR)
### ANSWER
SELECT SUM(preliminary) FROM table_name_84 WHERE interview = 9.654 AND average < 9.733</s> | {
"answer": "SELECT SUM(preliminary) FROM table_name_84 WHERE interview = 9.654 AND average < 9.733",
"context": "CREATE TABLE table_name_84 (preliminary INTEGER, interview VARCHAR, average VARCHAR)",
"question": "What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?"
} |
### QUESTION
What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him?
### CONTEXT
CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR)
### ANSWER
SELECT consider FROM table_name_21 WHERE poll_source = "newsweek poll" AND oppose = "32%" AND candidate = "rudy giuliani"</s> | {
"answer": "SELECT consider FROM table_name_21 WHERE poll_source = \"newsweek poll\" AND oppose = \"32%\" AND candidate = \"rudy giuliani\"",
"context": "CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR)",
"question": "What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him?"
} |
### QUESTION
Which borough or census area has a $59,596 median household income?
### CONTEXT
CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR)
### ANSWER
SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = "$59,596"</s> | {
"answer": "SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = \"$59,596\"",
"context": "CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR)",
"question": "Which borough or census area has a $59,596 median household income?"
} |
### QUESTION
What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84?
### CONTEXT
CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR)
### ANSWER
SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = "ontario" AND status = "town" AND municipality = "minto" AND rank < 84</s> | {
"answer": "SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = \"ontario\" AND status = \"town\" AND municipality = \"minto\" AND rank < 84",
"context": "CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR)",
"question": "What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84?"
} |
### QUESTION
What is Partner, when Outcome is Winner, and when Date is 12 October 2003?
### CONTEXT
CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR)
### ANSWER
SELECT partner FROM table_name_73 WHERE outcome = "winner" AND date = "12 october 2003"</s> | {
"answer": "SELECT partner FROM table_name_73 WHERE outcome = \"winner\" AND date = \"12 october 2003\"",
"context": "CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR)",
"question": "What is Partner, when Outcome is Winner, and when Date is 12 October 2003?"
} |
### QUESTION
What is Opponents, when Partner is Mervana Jugić-Salkić?
### CONTEXT
CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR)
### ANSWER
SELECT opponents FROM table_name_8 WHERE partner = "mervana jugić-salkić"</s> | {
"answer": "SELECT opponents FROM table_name_8 WHERE partner = \"mervana jugić-salkić\"",
"context": "CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR)",
"question": "What is Opponents, when Partner is Mervana Jugić-Salkić?"
} |
### QUESTION
What is the average Rebounds, when Minutes Played is "113", and when Games Played is greater than "18"?
### CONTEXT
CREATE TABLE table_name_4 (rebounds INTEGER, minutes_played VARCHAR, games_played VARCHAR)
### ANSWER
SELECT AVG(rebounds) FROM table_name_4 WHERE minutes_played = 113 AND games_played > 18</s> | {
"answer": "SELECT AVG(rebounds) FROM table_name_4 WHERE minutes_played = 113 AND games_played > 18",
"context": "CREATE TABLE table_name_4 (rebounds INTEGER, minutes_played VARCHAR, games_played VARCHAR)",
"question": "What is the average Rebounds, when Minutes Played is \"113\", and when Games Played is greater than \"18\"?"
} |
### QUESTION
What is the highest Pick, when College is "Syracuse", and when Overall is less than 18?
### CONTEXT
CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)
### ANSWER
SELECT MAX(pick) FROM table_name_40 WHERE college = "syracuse" AND overall < 18</s> | {
"answer": "SELECT MAX(pick) FROM table_name_40 WHERE college = \"syracuse\" AND overall < 18",
"context": "CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)",
"question": "What is the highest Pick, when College is \"Syracuse\", and when Overall is less than 18?"
} |
### QUESTION
What is the title for david campbell mulford?
### CONTEXT
CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR)
### ANSWER
SELECT title FROM table_name_90 WHERE name = "david campbell mulford"</s> | {
"answer": "SELECT title FROM table_name_90 WHERE name = \"david campbell mulford\"",
"context": "CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR)",
"question": "What is the title for david campbell mulford?"
} |
### QUESTION
What is the size of the rest bit field when the leading bits are more than 110 and the start address is 224.0.0.0?
### CONTEXT
CREATE TABLE table_name_12 (size_of_rest_bit_field VARCHAR, leading_bits VARCHAR, start_address VARCHAR)
### ANSWER
SELECT size_of_rest_bit_field FROM table_name_12 WHERE leading_bits > 110 AND start_address = "224.0.0.0"</s> | {
"answer": "SELECT size_of_rest_bit_field FROM table_name_12 WHERE leading_bits > 110 AND start_address = \"224.0.0.0\"",
"context": "CREATE TABLE table_name_12 (size_of_rest_bit_field VARCHAR, leading_bits VARCHAR, start_address VARCHAR)",
"question": "What is the size of the rest bit field when the leading bits are more than 110 and the start address is 224.0.0.0?"
} |
### QUESTION
When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?
### CONTEXT
CREATE TABLE table_name_14 (goals_against VARCHAR, points_1 VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT COUNT(goals_against) FROM table_name_14 WHERE points_1 = 44 AND goals_for > 65</s> | {
"answer": "SELECT COUNT(goals_against) FROM table_name_14 WHERE points_1 = 44 AND goals_for > 65",
"context": "CREATE TABLE table_name_14 (goals_against VARCHAR, points_1 VARCHAR, goals_for VARCHAR)",
"question": "When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?"
} |
### QUESTION
what is the date for traction type electric with calgary location?
### CONTEXT
CREATE TABLE table_name_18 (date__from_ VARCHAR, traction_type VARCHAR, location VARCHAR)
### ANSWER
SELECT date__from_ FROM table_name_18 WHERE traction_type = "electric" AND location = "calgary"</s> | {
"answer": "SELECT date__from_ FROM table_name_18 WHERE traction_type = \"electric\" AND location = \"calgary\"",
"context": "CREATE TABLE table_name_18 (date__from_ VARCHAR, traction_type VARCHAR, location VARCHAR)",
"question": "what is the date for traction type electric with calgary location?"
} |
### QUESTION
What is the total number of golds having a total of 1, bronzes of 0, and from West Germany?
### CONTEXT
CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = "west germany"</s> | {
"answer": "SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = \"west germany\"",
"context": "CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)",
"question": "What is the total number of golds having a total of 1, bronzes of 0, and from West Germany?"
} |
### QUESTION
Who had the high assists when the game was at American Airlines Center 20,223?
### CONTEXT
CREATE TABLE table_name_8 (high_assists VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT high_assists FROM table_name_8 WHERE location_attendance = "american airlines center 20,223"</s> | {
"answer": "SELECT high_assists FROM table_name_8 WHERE location_attendance = \"american airlines center 20,223\"",
"context": "CREATE TABLE table_name_8 (high_assists VARCHAR, location_attendance VARCHAR)",
"question": "Who had the high assists when the game was at American Airlines Center 20,223?"
} |
### QUESTION
What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8?
### CONTEXT
CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = "28.8%" AND rank < 8</s> | {
"answer": "SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = \"28.8%\" AND rank < 8",
"context": "CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR)",
"question": "What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8?"
} |
### QUESTION
What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?
### CONTEXT
CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)
### ANSWER
SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = "18.3%" AND rank < 11</s> | {
"answer": "SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = \"18.3%\" AND rank < 11",
"context": "CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)",
"question": "What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?"
} |
### QUESTION
Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico?
### CONTEXT
CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR)
### ANSWER
SELECT score FROM table_name_96 WHERE date = "october 8, 2005" AND venue = "estadio alfonso lastras, san luis potosí, mexico"</s> | {
"answer": "SELECT score FROM table_name_96 WHERE date = \"october 8, 2005\" AND venue = \"estadio alfonso lastras, san luis potosí, mexico\"",
"context": "CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR)",
"question": "Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico?"
} |
### QUESTION
Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15?
### CONTEXT
CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR)
### ANSWER
SELECT competition FROM table_name_45 WHERE venue = "estadio alfonso lastras, san luis potosí, mexico" AND goal > 15</s> | {
"answer": "SELECT competition FROM table_name_45 WHERE venue = \"estadio alfonso lastras, san luis potosí, mexico\" AND goal > 15",
"context": "CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR)",
"question": "Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15?"
} |
### QUESTION
Which operating system has 1GB (mobile ddr) memory (RAM)?
### CONTEXT
CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)
### ANSWER
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"</s> | {
"answer": "SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = \"1gb (mobile ddr)\"",
"context": "CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)",
"question": "Which operating system has 1GB (mobile ddr) memory (RAM)?"
} |
### QUESTION
What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30?
### CONTEXT
CREATE TABLE table_name_90 (location__numbersites__global_local_ VARCHAR, software VARCHAR, ipv6_address VARCHAR)
### ANSWER
SELECT location__numbersites__global_local_ FROM table_name_90 WHERE software = "bind" AND ipv6_address = "2001:503:c27::2:30"</s> | {
"answer": "SELECT location__numbersites__global_local_ FROM table_name_90 WHERE software = \"bind\" AND ipv6_address = \"2001:503:c27::2:30\"",
"context": "CREATE TABLE table_name_90 (location__numbersites__global_local_ VARCHAR, software VARCHAR, ipv6_address VARCHAR)",
"question": "What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30?"
} |
### QUESTION
What is the lowest All-Time, when First Title is before 1974, when Last Title is "1933", and when Amateur Era is greater than 2?
### CONTEXT
CREATE TABLE table_name_95 (all_time INTEGER, amateur_era VARCHAR, first_title VARCHAR, last_title VARCHAR)
### ANSWER
SELECT MIN(all_time) FROM table_name_95 WHERE first_title < 1974 AND last_title = 1933 AND amateur_era > 2</s> | {
"answer": "SELECT MIN(all_time) FROM table_name_95 WHERE first_title < 1974 AND last_title = 1933 AND amateur_era > 2",
"context": "CREATE TABLE table_name_95 (all_time INTEGER, amateur_era VARCHAR, first_title VARCHAR, last_title VARCHAR)",
"question": "What is the lowest All-Time, when First Title is before 1974, when Last Title is \"1933\", and when Amateur Era is greater than 2?"
} |
### QUESTION
What is the location of the team nicknamed Broncos, which was founded after 1889?
### CONTEXT
CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR)
### ANSWER
SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = "broncos"</s> | {
"answer": "SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = \"broncos\"",
"context": "CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR)",
"question": "What is the location of the team nicknamed Broncos, which was founded after 1889?"
} |
### QUESTION
What is the average membership with 3.33% LDS and less than 47 branches?
### CONTEXT
CREATE TABLE table_name_15 (membership INTEGER, _percentage_lds VARCHAR, branches VARCHAR)
### ANSWER
SELECT AVG(membership) FROM table_name_15 WHERE _percentage_lds = "3.33%" AND branches < 47</s> | {
"answer": "SELECT AVG(membership) FROM table_name_15 WHERE _percentage_lds = \"3.33%\" AND branches < 47",
"context": "CREATE TABLE table_name_15 (membership INTEGER, _percentage_lds VARCHAR, branches VARCHAR)",
"question": "What is the average membership with 3.33% LDS and less than 47 branches?"
} |
### QUESTION
What is NiCd, when Type is "Capacity under 500mA constant Drain"?
### CONTEXT
CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR)
### ANSWER
SELECT nicd FROM table_name_23 WHERE type = "capacity under 500ma constant drain"</s> | {
"answer": "SELECT nicd FROM table_name_23 WHERE type = \"capacity under 500ma constant drain\"",
"context": "CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR)",
"question": "What is NiCd, when Type is \"Capacity under 500mA constant Drain\"?"
} |
### QUESTION
Which Date has a Margin of victory of 5 strokes, and a Winning score of −13 (67-73-64-63=267)?
### CONTEXT
CREATE TABLE table_name_33 (date VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT date FROM table_name_33 WHERE margin_of_victory = "5 strokes" AND winning_score = −13(67 - 73 - 64 - 63 = 267)</s> | {
"answer": "SELECT date FROM table_name_33 WHERE margin_of_victory = \"5 strokes\" AND winning_score = −13(67 - 73 - 64 - 63 = 267)",
"context": "CREATE TABLE table_name_33 (date VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)",
"question": "Which Date has a Margin of victory of 5 strokes, and a Winning score of −13 (67-73-64-63=267)?"
} |
### QUESTION
What is the Population density that has a Change (%) higher than 10.4, and a Population (2011) less than 8574, in the County of Queens?
### CONTEXT
CREATE TABLE table_name_63 (population_density INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, county VARCHAR)
### ANSWER
SELECT AVG(population_density) FROM table_name_63 WHERE change___percentage_ > 10.4 AND county = "queens" AND population__2011_ < 8574</s> | {
"answer": "SELECT AVG(population_density) FROM table_name_63 WHERE change___percentage_ > 10.4 AND county = \"queens\" AND population__2011_ < 8574",
"context": "CREATE TABLE table_name_63 (population_density INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, county VARCHAR)",
"question": "What is the Population density that has a Change (%) higher than 10.4, and a Population (2011) less than 8574, in the County of Queens?"
} |
### QUESTION
What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?
### CONTEXT
CREATE TABLE table_name_25 (grid INTEGER, bike VARCHAR, rider VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_25 WHERE bike = "suzuki gsx-r1000" AND rider = "fonsi nieto"</s> | {
"answer": "SELECT AVG(grid) FROM table_name_25 WHERE bike = \"suzuki gsx-r1000\" AND rider = \"fonsi nieto\"",
"context": "CREATE TABLE table_name_25 (grid INTEGER, bike VARCHAR, rider VARCHAR)",
"question": "What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?"
} |
### QUESTION
What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km²) larger than 4.5?
### CONTEXT
CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km²_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)
### ANSWER
SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND change___percentage_ = 5 AND area__km²_ > 4.5</s> | {
"answer": "SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND change___percentage_ = 5 AND area__km²_ > 4.5",
"context": "CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km²_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)",
"question": "What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km²) larger than 4.5?"
} |
### QUESTION
In the County of Prince, what was the highest Population density when the Area (km²) was larger than 3.02, and the Population (2006) was larger than 786, and the Population (2011) was smaller than 1135?
### CONTEXT
CREATE TABLE table_name_93 (population_density INTEGER, population__2011_ VARCHAR, population__2006_ VARCHAR, county VARCHAR, area__km²_ VARCHAR)
### ANSWER
SELECT MAX(population_density) FROM table_name_93 WHERE county = "prince" AND area__km²_ > 3.02 AND population__2006_ > 786 AND population__2011_ < 1135</s> | {
"answer": "SELECT MAX(population_density) FROM table_name_93 WHERE county = \"prince\" AND area__km²_ > 3.02 AND population__2006_ > 786 AND population__2011_ < 1135",
"context": "CREATE TABLE table_name_93 (population_density INTEGER, population__2011_ VARCHAR, population__2006_ VARCHAR, county VARCHAR, area__km²_ VARCHAR)",
"question": "In the County of Prince, what was the highest Population density when the Area (km²) was larger than 3.02, and the Population (2006) was larger than 786, and the Population (2011) was smaller than 1135?"
} |
### QUESTION
What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?
### CONTEXT
CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)
### ANSWER
SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22</s> | {
"answer": "SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22",
"context": "CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)",
"question": "What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?"
} |
### QUESTION
Which 2007–08 season has a Club of genoa c.f.c.?
### CONTEXT
CREATE TABLE table_name_49 (club VARCHAR)
### ANSWER
SELECT 2007 AS _08_season FROM table_name_49 WHERE club = "genoa c.f.c."</s> | {
"answer": "SELECT 2007 AS _08_season FROM table_name_49 WHERE club = \"genoa c.f.c.\"",
"context": "CREATE TABLE table_name_49 (club VARCHAR)",
"question": "Which 2007–08 season has a Club of genoa c.f.c.?"
} |
### QUESTION
What is the sum of value for average finish with poles less than 0?
### CONTEXT
CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER)
### ANSWER
SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0</s> | {
"answer": "SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0",
"context": "CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER)",
"question": "What is the sum of value for average finish with poles less than 0?"
} |
### QUESTION
What is the average start with wins larger than 0 and 32nd position?
### CONTEXT
CREATE TABLE table_name_34 (starts INTEGER, wins VARCHAR, position VARCHAR)
### ANSWER
SELECT AVG(starts) FROM table_name_34 WHERE wins > 0 AND position = "32nd"</s> | {
"answer": "SELECT AVG(starts) FROM table_name_34 WHERE wins > 0 AND position = \"32nd\"",
"context": "CREATE TABLE table_name_34 (starts INTEGER, wins VARCHAR, position VARCHAR)",
"question": "What is the average start with wins larger than 0 and 32nd position?"
} |
### QUESTION
What is the specific impulse for the engine with a scenario of sr-71 at mach 3.2 (wet)?
### CONTEXT
CREATE TABLE table_name_19 (specific_impulse__s_ VARCHAR, scenario VARCHAR)
### ANSWER
SELECT specific_impulse__s_ FROM table_name_19 WHERE scenario = "sr-71 at mach 3.2 (wet)"</s> | {
"answer": "SELECT specific_impulse__s_ FROM table_name_19 WHERE scenario = \"sr-71 at mach 3.2 (wet)\"",
"context": "CREATE TABLE table_name_19 (specific_impulse__s_ VARCHAR, scenario VARCHAR)",
"question": "What is the specific impulse for the engine with a scenario of sr-71 at mach 3.2 (wet)?"
} |
### QUESTION
what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423
### CONTEXT
CREATE TABLE table_name_66 (specific_impulse__s_ INTEGER, sfc_in_lb__lbf·h_ VARCHAR, effective_exhaust_velocity__m_s_ VARCHAR)
### ANSWER
SELECT AVG(specific_impulse__s_) FROM table_name_66 WHERE sfc_in_lb__lbf·h_ = 7.95 AND effective_exhaust_velocity__m_s_ > 4 OFFSET 423</s> | {
"answer": "SELECT AVG(specific_impulse__s_) FROM table_name_66 WHERE sfc_in_lb__lbf·h_ = 7.95 AND effective_exhaust_velocity__m_s_ > 4 OFFSET 423",
"context": "CREATE TABLE table_name_66 (specific_impulse__s_ INTEGER, sfc_in_lb__lbf·h_ VARCHAR, effective_exhaust_velocity__m_s_ VARCHAR)",
"question": "what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423"
} |
### QUESTION
What is Language, when Content is Sport, when HDTV is No, and when Television Service is ESPN America?
### CONTEXT
CREATE TABLE table_name_71 (language VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR)
### ANSWER
SELECT language FROM table_name_71 WHERE content = "sport" AND hdtv = "no" AND television_service = "espn america"</s> | {
"answer": "SELECT language FROM table_name_71 WHERE content = \"sport\" AND hdtv = \"no\" AND television_service = \"espn america\"",
"context": "CREATE TABLE table_name_71 (language VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR)",
"question": "What is Language, when Content is Sport, when HDTV is No, and when Television Service is ESPN America?"
} |
### QUESTION
What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, "carcharodontosaurid"?
### CONTEXT
CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)
### ANSWER
SELECT novelty FROM table_name_46 WHERE authors = "zhiming" AND notes = "carcharodontosaurid"</s> | {
"answer": "SELECT novelty FROM table_name_46 WHERE authors = \"zhiming\" AND notes = \"carcharodontosaurid\"",
"context": "CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)",
"question": "What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, \"carcharodontosaurid\"?"
} |
### QUESTION
Who scored 74-70-67=211 and placed t5?
### CONTEXT
CREATE TABLE table_name_6 (player VARCHAR, place VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_6 WHERE place = "t5" AND score = 74 - 70 - 67 = 211</s> | {
"answer": "SELECT player FROM table_name_6 WHERE place = \"t5\" AND score = 74 - 70 - 67 = 211",
"context": "CREATE TABLE table_name_6 (player VARCHAR, place VARCHAR, score VARCHAR)",
"question": "Who scored 74-70-67=211 and placed t5?"
} |
### QUESTION
What is the number listed under against when there were less than 13 losses and less than 2 byes?
### CONTEXT
CREATE TABLE table_name_72 (against VARCHAR, losses VARCHAR, byes VARCHAR)
### ANSWER
SELECT COUNT(against) FROM table_name_72 WHERE losses < 13 AND byes < 2</s> | {
"answer": "SELECT COUNT(against) FROM table_name_72 WHERE losses < 13 AND byes < 2",
"context": "CREATE TABLE table_name_72 (against VARCHAR, losses VARCHAR, byes VARCHAR)",
"question": "What is the number listed under against when there were less than 13 losses and less than 2 byes?"
} |
### QUESTION
What is the average public debt % of GDP in 2013 Q1 of the country with a member slate sorted by GDP of Czech Republic and a GDP per capita in PPP US dollars in 2012 greater than 27,191?
### CONTEXT
CREATE TABLE table_name_7 (public_debt__percentage_of_gdp__2013_q1_ INTEGER, member_state_sorted_by_gdp VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)
### ANSWER
SELECT AVG(public_debt__percentage_of_gdp__2013_q1_) FROM table_name_7 WHERE member_state_sorted_by_gdp = "czech republic" AND gdp_per_capita_in_ppp_us$__2012_ > 27 OFFSET 191</s> | {
"answer": "SELECT AVG(public_debt__percentage_of_gdp__2013_q1_) FROM table_name_7 WHERE member_state_sorted_by_gdp = \"czech republic\" AND gdp_per_capita_in_ppp_us$__2012_ > 27 OFFSET 191",
"context": "CREATE TABLE table_name_7 (public_debt__percentage_of_gdp__2013_q1_ INTEGER, member_state_sorted_by_gdp VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)",
"question": "What is the average public debt % of GDP in 2013 Q1 of the country with a member slate sorted by GDP of Czech Republic and a GDP per capita in PPP US dollars in 2012 greater than 27,191?"
} |
### QUESTION
What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%?
### CONTEXT
CREATE TABLE table_name_74 (inflation__percentage_annual__2012_ INTEGER, public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)
### ANSWER
SELECT MAX(inflation__percentage_annual__2012_) FROM table_name_74 WHERE public_debt__percentage_of_gdp__2013_q1_ > 88.2 AND gdp__percentage_of_eu__2012_ = "2.9%"</s> | {
"answer": "SELECT MAX(inflation__percentage_annual__2012_) FROM table_name_74 WHERE public_debt__percentage_of_gdp__2013_q1_ > 88.2 AND gdp__percentage_of_eu__2012_ = \"2.9%\"",
"context": "CREATE TABLE table_name_74 (inflation__percentage_annual__2012_ INTEGER, public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)",
"question": "What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%?"
} |
### QUESTION
Can you tell me the Record that has the Game of 19?
### CONTEXT
CREATE TABLE table_name_72 (record VARCHAR, game VARCHAR)
### ANSWER
SELECT record FROM table_name_72 WHERE game = 19</s> | {
"answer": "SELECT record FROM table_name_72 WHERE game = 19",
"context": "CREATE TABLE table_name_72 (record VARCHAR, game VARCHAR)",
"question": "Can you tell me the Record that has the Game of 19?"
} |
### QUESTION
What is the Location and Attendance with a Record of 21–22?
### CONTEXT
CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_16 WHERE record = "21–22"</s> | {
"answer": "SELECT location_attendance FROM table_name_16 WHERE record = \"21–22\"",
"context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)",
"question": "What is the Location and Attendance with a Record of 21–22?"
} |
### QUESTION
What is the position when lost is less than 7?
### CONTEXT
CREATE TABLE table_name_60 (position INTEGER, lost INTEGER)
### ANSWER
SELECT AVG(position) FROM table_name_60 WHERE lost < 7</s> | {
"answer": "SELECT AVG(position) FROM table_name_60 WHERE lost < 7",
"context": "CREATE TABLE table_name_60 (position INTEGER, lost INTEGER)",
"question": "What is the position when lost is less than 7?"
} |
### QUESTION
What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?
### CONTEXT
CREATE TABLE table_name_56 (bronze INTEGER, nation VARCHAR, gold VARCHAR)
### ANSWER
SELECT MIN(bronze) FROM table_name_56 WHERE nation = "egypt (egy)" AND gold < 2</s> | {
"answer": "SELECT MIN(bronze) FROM table_name_56 WHERE nation = \"egypt (egy)\" AND gold < 2",
"context": "CREATE TABLE table_name_56 (bronze INTEGER, nation VARCHAR, gold VARCHAR)",
"question": "What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?"
} |
### QUESTION
What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?
### CONTEXT
CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR)
### ANSWER
SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = "#35" AND viewers < 8.21</s> | {
"answer": "SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = \"#35\" AND viewers < 8.21",
"context": "CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR)",
"question": "What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?"
} |
### QUESTION
What website has an Ofsted less than 106478 in Atherton?
### CONTEXT
CREATE TABLE table_name_33 (website VARCHAR, ofsted VARCHAR, locality VARCHAR)
### ANSWER
SELECT website FROM table_name_33 WHERE ofsted < 106478 AND locality = "atherton"</s> | {
"answer": "SELECT website FROM table_name_33 WHERE ofsted < 106478 AND locality = \"atherton\"",
"context": "CREATE TABLE table_name_33 (website VARCHAR, ofsted VARCHAR, locality VARCHAR)",
"question": "What website has an Ofsted less than 106478 in Atherton?"
} |
### QUESTION
Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey?
### CONTEXT
CREATE TABLE table_name_78 (league INTEGER, venue VARCHAR, club VARCHAR)
### ANSWER
SELECT MIN(league) AS championships FROM table_name_78 WHERE venue = "penn state ice pavilion" AND club = "penn state nittany lions men's ice hockey"</s> | {
"answer": "SELECT MIN(league) AS championships FROM table_name_78 WHERE venue = \"penn state ice pavilion\" AND club = \"penn state nittany lions men's ice hockey\"",
"context": "CREATE TABLE table_name_78 (league INTEGER, venue VARCHAR, club VARCHAR)",
"question": "Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey?"
} |
### QUESTION
What date has 2006 fifa world cup qualification as the competition, and alamodome, san antonio, united States as the venue?
### CONTEXT
CREATE TABLE table_name_40 (date VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_40 WHERE competition = "2006 fifa world cup qualification" AND venue = "alamodome, san antonio, united states"</s> | {
"answer": "SELECT date FROM table_name_40 WHERE competition = \"2006 fifa world cup qualification\" AND venue = \"alamodome, san antonio, united states\"",
"context": "CREATE TABLE table_name_40 (date VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "What date has 2006 fifa world cup qualification as the competition, and alamodome, san antonio, united States as the venue?"
} |
### QUESTION
Which astrological sign has the Latin motto of Vita?
### CONTEXT
CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)
### ANSWER
SELECT sign FROM table_name_21 WHERE latin_motto = "vita"</s> | {
"answer": "SELECT sign FROM table_name_21 WHERE latin_motto = \"vita\"",
"context": "CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)",
"question": "Which astrological sign has the Latin motto of Vita?"
} |
### QUESTION
what is the location when the opponent is aleksandr pitchkounov?
### CONTEXT
CREATE TABLE table_name_54 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_54 WHERE opponent = "aleksandr pitchkounov"</s> | {
"answer": "SELECT location FROM table_name_54 WHERE opponent = \"aleksandr pitchkounov\"",
"context": "CREATE TABLE table_name_54 (location VARCHAR, opponent VARCHAR)",
"question": "what is the location when the opponent is aleksandr pitchkounov?"
} |
### QUESTION
What is the date of the game with a result of W 13-10?
### CONTEXT
CREATE TABLE table_name_53 (date VARCHAR, result VARCHAR)
### ANSWER
SELECT date FROM table_name_53 WHERE result = "w 13-10"</s> | {
"answer": "SELECT date FROM table_name_53 WHERE result = \"w 13-10\"",
"context": "CREATE TABLE table_name_53 (date VARCHAR, result VARCHAR)",
"question": "What is the date of the game with a result of W 13-10?"
} |
### QUESTION
What is the total number of To Par, when Player is "Julius Boros", and when Total is greater than 295?
### CONTEXT
CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR)
### ANSWER
SELECT COUNT(to_par) FROM table_name_28 WHERE player = "julius boros" AND total > 295</s> | {
"answer": "SELECT COUNT(to_par) FROM table_name_28 WHERE player = \"julius boros\" AND total > 295",
"context": "CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR)",
"question": "What is the total number of To Par, when Player is \"Julius Boros\", and when Total is greater than 295?"
} |
### QUESTION
What is the lowest total when the rank is 14 and the gold medals is larger than 0?
### CONTEXT
CREATE TABLE table_name_34 (total INTEGER, rank VARCHAR, gold VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_34 WHERE rank = "14" AND gold > 0</s> | {
"answer": "SELECT MIN(total) FROM table_name_34 WHERE rank = \"14\" AND gold > 0",
"context": "CREATE TABLE table_name_34 (total INTEGER, rank VARCHAR, gold VARCHAR)",
"question": "What is the lowest total when the rank is 14 and the gold medals is larger than 0?"
} |
### QUESTION
what is 2011 when the rank is less than 8 and the water park is ocean world?
### CONTEXT
CREATE TABLE table_name_58 (rank VARCHAR, water_park VARCHAR)
### ANSWER
SELECT SUM(2011) FROM table_name_58 WHERE rank < 8 AND water_park = "ocean world"</s> | {
"answer": "SELECT SUM(2011) FROM table_name_58 WHERE rank < 8 AND water_park = \"ocean world\"",
"context": "CREATE TABLE table_name_58 (rank VARCHAR, water_park VARCHAR)",
"question": "what is 2011 when the rank is less than 8 and the water park is ocean world?"
} |
### QUESTION
What area shows % Hindu of statistics from the bbc in depth report.?
### CONTEXT
CREATE TABLE table_name_71 (area VARCHAR, _percentage_hindu VARCHAR)
### ANSWER
SELECT area FROM table_name_71 WHERE _percentage_hindu = "statistics from the bbc in depth report."</s> | {
"answer": "SELECT area FROM table_name_71 WHERE _percentage_hindu = \"statistics from the bbc in depth report.\"",
"context": "CREATE TABLE table_name_71 (area VARCHAR, _percentage_hindu VARCHAR)",
"question": "What area shows % Hindu of statistics from the bbc in depth report.?"
} |
### QUESTION
What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?
### CONTEXT
CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)
### ANSWER
SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = "united states" AND rank > 47 AND main_span_metres = "421"</s> | {
"answer": "SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = \"united states\" AND rank > 47 AND main_span_metres = \"421\"",
"context": "CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)",
"question": "What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?"
} |
### QUESTION
What is Opponent, when Location/Attendance is "Mellon Arena - 17,132"?
### CONTEXT
CREATE TABLE table_name_67 (opponent VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT opponent FROM table_name_67 WHERE location_attendance = "mellon arena - 17,132"</s> | {
"answer": "SELECT opponent FROM table_name_67 WHERE location_attendance = \"mellon arena - 17,132\"",
"context": "CREATE TABLE table_name_67 (opponent VARCHAR, location_attendance VARCHAR)",
"question": "What is Opponent, when Location/Attendance is \"Mellon Arena - 17,132\"?"
} |
### QUESTION
What driving wheels are on the m1 original NER class?
### CONTEXT
CREATE TABLE table_name_8 (driving_wheels VARCHAR, original_ner_class VARCHAR)
### ANSWER
SELECT driving_wheels FROM table_name_8 WHERE original_ner_class = "m1"</s> | {
"answer": "SELECT driving_wheels FROM table_name_8 WHERE original_ner_class = \"m1\"",
"context": "CREATE TABLE table_name_8 (driving_wheels VARCHAR, original_ner_class VARCHAR)",
"question": "What driving wheels are on the m1 original NER class?"
} |
### QUESTION
What is the M-R Romaja for the province having a capital of Cheongju?
### CONTEXT
CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)
### ANSWER
SELECT m_r_romaja FROM table_name_34 WHERE capital = "cheongju"</s> | {
"answer": "SELECT m_r_romaja FROM table_name_34 WHERE capital = \"cheongju\"",
"context": "CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)",
"question": "What is the M-R Romaja for the province having a capital of Cheongju?"
} |
### QUESTION
If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?
### CONTEXT
CREATE TABLE table_name_77 (total INTEGER, to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(total) FROM table_name_77 WHERE to_par > 7 AND player = "corey pavin"</s> | {
"answer": "SELECT SUM(total) FROM table_name_77 WHERE to_par > 7 AND player = \"corey pavin\"",
"context": "CREATE TABLE table_name_77 (total INTEGER, to_par VARCHAR, player VARCHAR)",
"question": "If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?"
} |
### QUESTION
In what year of school is the forward Iman McFarland?
### CONTEXT
CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR)
### ANSWER
SELECT year FROM table_name_90 WHERE position = "forward" AND name = "iman mcfarland"</s> | {
"answer": "SELECT year FROM table_name_90 WHERE position = \"forward\" AND name = \"iman mcfarland\"",
"context": "CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR)",
"question": "In what year of school is the forward Iman McFarland?"
} |
### QUESTION
what is the score when the opponent is fernando vicente?
### CONTEXT
CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)
### ANSWER
SELECT score FROM table_name_9 WHERE opponent = "fernando vicente"</s> | {
"answer": "SELECT score FROM table_name_9 WHERE opponent = \"fernando vicente\"",
"context": "CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)",
"question": "what is the score when the opponent is fernando vicente?"
} |
### QUESTION
What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?
### CONTEXT
CREATE TABLE table_name_95 (league_goals INTEGER, league_apps VARCHAR, league_cup_goals VARCHAR)
### ANSWER
SELECT AVG(league_goals) FROM table_name_95 WHERE league_apps = "16 (1)" AND league_cup_goals < 0</s> | {
"answer": "SELECT AVG(league_goals) FROM table_name_95 WHERE league_apps = \"16 (1)\" AND league_cup_goals < 0",
"context": "CREATE TABLE table_name_95 (league_goals INTEGER, league_apps VARCHAR, league_cup_goals VARCHAR)",
"question": "What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?"
} |
### QUESTION
What is the league cup apps when the league goals are greater than 3, there are 30 (2) total apps, and has a position of mf?
### CONTEXT
CREATE TABLE table_name_13 (league_cup_apps VARCHAR, total_apps VARCHAR, position VARCHAR, league_goals VARCHAR)
### ANSWER
SELECT league_cup_apps FROM table_name_13 WHERE position = "mf" AND league_goals > 3 AND total_apps = "30 (2)"</s> | {
"answer": "SELECT league_cup_apps FROM table_name_13 WHERE position = \"mf\" AND league_goals > 3 AND total_apps = \"30 (2)\"",
"context": "CREATE TABLE table_name_13 (league_cup_apps VARCHAR, total_apps VARCHAR, position VARCHAR, league_goals VARCHAR)",
"question": "What is the league cup apps when the league goals are greater than 3, there are 30 (2) total apps, and has a position of mf?"
} |
### QUESTION
What is the lowest points when the ranking is 1st?
### CONTEXT
CREATE TABLE table_name_60 (points INTEGER, rank VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_name_60 WHERE rank = "1st"</s> | {
"answer": "SELECT MIN(points) FROM table_name_60 WHERE rank = \"1st\"",
"context": "CREATE TABLE table_name_60 (points INTEGER, rank VARCHAR)",
"question": "What is the lowest points when the ranking is 1st?"
} |
### QUESTION
What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?
### CONTEXT
CREATE TABLE table_name_77 (league_cup INTEGER, total VARCHAR, fa_cup VARCHAR, premier_league VARCHAR)
### ANSWER
SELECT MAX(league_cup) FROM table_name_77 WHERE fa_cup > 0 AND premier_league < 34 AND total = 11</s> | {
"answer": "SELECT MAX(league_cup) FROM table_name_77 WHERE fa_cup > 0 AND premier_league < 34 AND total = 11",
"context": "CREATE TABLE table_name_77 (league_cup INTEGER, total VARCHAR, fa_cup VARCHAR, premier_league VARCHAR)",
"question": "What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?"
} |
### QUESTION
What is the average Area (in km²), when Markatal is less than 0?
### CONTEXT
CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)
### ANSWER
SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0</s> | {
"answer": "SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0",
"context": "CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)",
"question": "What is the average Area (in km²), when Markatal is less than 0?"
} |
### QUESTION
What is the highest Markatal, when Municipality is Leirvík, and when Inhabitants Per Km² is greater than 79?
### CONTEXT
CREATE TABLE table_name_69 (markatal INTEGER, municipality VARCHAR, inhabitants_per_km² VARCHAR)
### ANSWER
SELECT MAX(markatal) FROM table_name_69 WHERE municipality = "leirvík" AND inhabitants_per_km² > 79</s> | {
"answer": "SELECT MAX(markatal) FROM table_name_69 WHERE municipality = \"leirvík\" AND inhabitants_per_km² > 79",
"context": "CREATE TABLE table_name_69 (markatal INTEGER, municipality VARCHAR, inhabitants_per_km² VARCHAR)",
"question": "What is the highest Markatal, when Municipality is Leirvík, and when Inhabitants Per Km² is greater than 79?"
} |
### QUESTION
What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?
### CONTEXT
CREATE TABLE table_name_57 (population INTEGER, municipality VARCHAR, markatal VARCHAR, inhabitants_per_km² VARCHAR)
### ANSWER
SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km² > 24 AND municipality = "runavík"</s> | {
"answer": "SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km² > 24 AND municipality = \"runavík\"",
"context": "CREATE TABLE table_name_57 (population INTEGER, municipality VARCHAR, markatal VARCHAR, inhabitants_per_km² VARCHAR)",
"question": "What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?"
} |
### QUESTION
How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?
### CONTEXT
CREATE TABLE table_name_53 (season VARCHAR, wins VARCHAR, loses VARCHAR, competition VARCHAR)
### ANSWER
SELECT COUNT(season) FROM table_name_53 WHERE loses > 1 AND competition = "fiba europe cup" AND wins < 4</s> | {
"answer": "SELECT COUNT(season) FROM table_name_53 WHERE loses > 1 AND competition = \"fiba europe cup\" AND wins < 4",
"context": "CREATE TABLE table_name_53 (season VARCHAR, wins VARCHAR, loses VARCHAR, competition VARCHAR)",
"question": "How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?"
} |
### QUESTION
In what Year was the Result of the game 16-14?
### CONTEXT
CREATE TABLE table_name_81 (year INTEGER, result VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_81 WHERE result = "16-14"</s> | {
"answer": "SELECT MAX(year) FROM table_name_81 WHERE result = \"16-14\"",
"context": "CREATE TABLE table_name_81 (year INTEGER, result VARCHAR)",
"question": "In what Year was the Result of the game 16-14?"
} |
### QUESTION
What is home team Chelsea's Tie no?
### CONTEXT
CREATE TABLE table_name_83 (tie_no VARCHAR, home_team VARCHAR)
### ANSWER
SELECT tie_no FROM table_name_83 WHERE home_team = "chelsea"</s> | {
"answer": "SELECT tie_no FROM table_name_83 WHERE home_team = \"chelsea\"",
"context": "CREATE TABLE table_name_83 (tie_no VARCHAR, home_team VARCHAR)",
"question": "What is home team Chelsea's Tie no?"
} |
### QUESTION
What in 2007 has a 2010 of qf, and a 2012 of w?
### CONTEXT
CREATE TABLE table_name_92 (Id VARCHAR)
### ANSWER
SELECT 2007 FROM table_name_92 WHERE 2010 = "qf" AND 2012 = "w"</s> | {
"answer": "SELECT 2007 FROM table_name_92 WHERE 2010 = \"qf\" AND 2012 = \"w\"",
"context": "CREATE TABLE table_name_92 (Id VARCHAR)",
"question": "What in 2007 has a 2010 of qf, and a 2012 of w?"
} |
### QUESTION
What is the Away with a Time that is 14:00?
### CONTEXT
CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)
### ANSWER
SELECT away FROM table_name_28 WHERE time = "14:00"</s> | {
"answer": "SELECT away FROM table_name_28 WHERE time = \"14:00\"",
"context": "CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)",
"question": "What is the Away with a Time that is 14:00?"
} |
### QUESTION
What is the Score with a Date that is 2008-06-28?
### CONTEXT
CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_35 WHERE date = "2008-06-28"</s> | {
"answer": "SELECT score FROM table_name_35 WHERE date = \"2008-06-28\"",
"context": "CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)",
"question": "What is the Score with a Date that is 2008-06-28?"
} |
### QUESTION
What is Points, when Tries For is "correct as of 00:00 11 June 2008"?
### CONTEXT
CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR)
### ANSWER
SELECT points FROM table_name_90 WHERE tries_for = "correct as of 00:00 11 june 2008"</s> | {
"answer": "SELECT points FROM table_name_90 WHERE tries_for = \"correct as of 00:00 11 june 2008\"",
"context": "CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR)",
"question": "What is Points, when Tries For is \"correct as of 00:00 11 June 2008\"?"
} |
### QUESTION
Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0?
### CONTEXT
CREATE TABLE table_name_60 (class VARCHAR, number_at_lincoln VARCHAR, wheel_arrangement VARCHAR)
### ANSWER
SELECT class FROM table_name_60 WHERE number_at_lincoln < 1 AND wheel_arrangement = "0-6-0"</s> | {
"answer": "SELECT class FROM table_name_60 WHERE number_at_lincoln < 1 AND wheel_arrangement = \"0-6-0\"",
"context": "CREATE TABLE table_name_60 (class VARCHAR, number_at_lincoln VARCHAR, wheel_arrangement VARCHAR)",
"question": "Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0?"
} |
### QUESTION
At Time Warner Cable Arena 12,096, what was the high points?
### CONTEXT
CREATE TABLE table_name_85 (high_points VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT high_points FROM table_name_85 WHERE location_attendance = "time warner cable arena 12,096"</s> | {
"answer": "SELECT high_points FROM table_name_85 WHERE location_attendance = \"time warner cable arena 12,096\"",
"context": "CREATE TABLE table_name_85 (high_points VARCHAR, location_attendance VARCHAR)",
"question": "At Time Warner Cable Arena 12,096, what was the high points?"
} |
### QUESTION
Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6–4, 6–2?
### CONTEXT
CREATE TABLE table_name_94 (partner VARCHAR, score VARCHAR, outcome VARCHAR, year VARCHAR)
### ANSWER
SELECT partner FROM table_name_94 WHERE outcome = "winner" AND year < 1993 AND score = "6–4, 6–2"</s> | {
"answer": "SELECT partner FROM table_name_94 WHERE outcome = \"winner\" AND year < 1993 AND score = \"6–4, 6–2\"",
"context": "CREATE TABLE table_name_94 (partner VARCHAR, score VARCHAR, outcome VARCHAR, year VARCHAR)",
"question": "Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6–4, 6–2?"
} |
### QUESTION
how many subdivisions have an English Name of jiyang?
### CONTEXT
CREATE TABLE table_name_24 (population VARCHAR, english_name VARCHAR)
### ANSWER
SELECT COUNT(population) FROM table_name_24 WHERE english_name = "jiyang"</s> | {
"answer": "SELECT COUNT(population) FROM table_name_24 WHERE english_name = \"jiyang\"",
"context": "CREATE TABLE table_name_24 (population VARCHAR, english_name VARCHAR)",
"question": "how many subdivisions have an English Name of jiyang?"
} |
### QUESTION
What is the Power (kW) for the station with a frequency of 95.1mhz?
### CONTEXT
CREATE TABLE table_name_72 (power__kw_ VARCHAR, frequency VARCHAR)
### ANSWER
SELECT power__kw_ FROM table_name_72 WHERE frequency = "95.1mhz"</s> | {
"answer": "SELECT power__kw_ FROM table_name_72 WHERE frequency = \"95.1mhz\"",
"context": "CREATE TABLE table_name_72 (power__kw_ VARCHAR, frequency VARCHAR)",
"question": "What is the Power (kW) for the station with a frequency of 95.1mhz?"
} |
### QUESTION
What is the Callsign for the station with the branding 93dot5 home radio Cagayan De Oro?
### CONTEXT
CREATE TABLE table_name_31 (callsign VARCHAR, branding VARCHAR)
### ANSWER
SELECT callsign FROM table_name_31 WHERE branding = "93dot5 home radio cagayan de oro"</s> | {
"answer": "SELECT callsign FROM table_name_31 WHERE branding = \"93dot5 home radio cagayan de oro\"",
"context": "CREATE TABLE table_name_31 (callsign VARCHAR, branding VARCHAR)",
"question": "What is the Callsign for the station with the branding 93dot5 home radio Cagayan De Oro?"
} |
Subsets and Splits