text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
Name trofeo fast team with young rider classification of francesco casagrande and stage of 10
### CONTEXT
CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
### ANSWER
SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = "francesco casagrande" AND stage = "10"</s> | {
"answer": "SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = \"francesco casagrande\" AND stage = \"10\"",
"context": "CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)",
"question": "Name trofeo fast team with young rider classification of francesco casagrande and stage of 10"
} |
### QUESTION
What is listed for the Tries against that has a Played of 22, along with a Club of Ystalyfera RFC?
### CONTEXT
CREATE TABLE table_name_95 (tries_against VARCHAR, played VARCHAR, club VARCHAR)
### ANSWER
SELECT tries_against FROM table_name_95 WHERE played = "22" AND club = "ystalyfera rfc"</s> | {
"answer": "SELECT tries_against FROM table_name_95 WHERE played = \"22\" AND club = \"ystalyfera rfc\"",
"context": "CREATE TABLE table_name_95 (tries_against VARCHAR, played VARCHAR, club VARCHAR)",
"question": "What is listed for the Tries against that has a Played of 22, along with a Club of Ystalyfera RFC?"
} |
### QUESTION
What is listed for the Drawn that has a Tray bonus of 5 wiht Points for of 517?
### CONTEXT
CREATE TABLE table_name_23 (drawn VARCHAR, try_bonus VARCHAR, points_for VARCHAR)
### ANSWER
SELECT drawn FROM table_name_23 WHERE try_bonus = "5" AND points_for = "517"</s> | {
"answer": "SELECT drawn FROM table_name_23 WHERE try_bonus = \"5\" AND points_for = \"517\"",
"context": "CREATE TABLE table_name_23 (drawn VARCHAR, try_bonus VARCHAR, points_for VARCHAR)",
"question": "What is listed for the Drawn that has a Tray bonus of 5 wiht Points for of 517?"
} |
### QUESTION
What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?
### CONTEXT
CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_34 WHERE week > 6 AND opponent = "at philadelphia eagles"</s> | {
"answer": "SELECT AVG(attendance) FROM table_name_34 WHERE week > 6 AND opponent = \"at philadelphia eagles\"",
"context": "CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR, opponent VARCHAR)",
"question": "What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?"
} |
### QUESTION
Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11
### CONTEXT
CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR, top_5 VARCHAR)
### ANSWER
SELECT MIN(cuts_made) FROM table_name_90 WHERE top_10 < 11 AND top_5 > 2 AND top_25 < 6</s> | {
"answer": "SELECT MIN(cuts_made) FROM table_name_90 WHERE top_10 < 11 AND top_5 > 2 AND top_25 < 6",
"context": "CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR, top_5 VARCHAR)",
"question": "Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11"
} |
### QUESTION
What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?
### CONTEXT
CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)
### ANSWER
SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = "10.9%" AND freight__metric_tonnes_ < 4 OFFSET 022</s> | {
"answer": "SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = \"10.9%\" AND freight__metric_tonnes_ < 4 OFFSET 022",
"context": "CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)",
"question": "What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?"
} |
### QUESTION
What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?
### CONTEXT
CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR)
### ANSWER
SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = "ourense" AND days_with_frost > 30</s> | {
"answer": "SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = \"ourense\" AND days_with_frost > 30",
"context": "CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR)",
"question": "What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?"
} |
### QUESTION
Which Runs is the highest one that has a Match larger than 63, and a Venue of national stadium, karachi, and a Year smaller than 1996?
### CONTEXT
CREATE TABLE table_name_75 (runs INTEGER, year VARCHAR, match VARCHAR, venue VARCHAR)
### ANSWER
SELECT MAX(runs) FROM table_name_75 WHERE match > 63 AND venue = "national stadium, karachi" AND year < 1996</s> | {
"answer": "SELECT MAX(runs) FROM table_name_75 WHERE match > 63 AND venue = \"national stadium, karachi\" AND year < 1996",
"context": "CREATE TABLE table_name_75 (runs INTEGER, year VARCHAR, match VARCHAR, venue VARCHAR)",
"question": "Which Runs is the highest one that has a Match larger than 63, and a Venue of national stadium, karachi, and a Year smaller than 1996?"
} |
### QUESTION
Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller?
### CONTEXT
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR)
### ANSWER
SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = "blake miller"</s> | {
"answer": "SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = \"blake miller\"",
"context": "CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR)",
"question": "Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller?"
} |
### QUESTION
What was the date of the game with a result of won 4-2?
### CONTEXT
CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR)
### ANSWER
SELECT date FROM table_name_15 WHERE result = "won 4-2"</s> | {
"answer": "SELECT date FROM table_name_15 WHERE result = \"won 4-2\"",
"context": "CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR)",
"question": "What was the date of the game with a result of won 4-2?"
} |
### QUESTION
What is the area (km²) of Nairnshire county, which has a population less than 11,050?
### CONTEXT
CREATE TABLE table_name_34 (area__km²_ INTEGER, county VARCHAR, population VARCHAR)
### ANSWER
SELECT SUM(area__km²_) FROM table_name_34 WHERE county = "nairnshire" AND population < 11 OFFSET 050</s> | {
"answer": "SELECT SUM(area__km²_) FROM table_name_34 WHERE county = \"nairnshire\" AND population < 11 OFFSET 050",
"context": "CREATE TABLE table_name_34 (area__km²_ INTEGER, county VARCHAR, population VARCHAR)",
"question": "What is the area (km²) of Nairnshire county, which has a population less than 11,050?"
} |
### QUESTION
What was the score for Footscray when they were the away team?
### CONTEXT
CREATE TABLE table_name_66 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_66 WHERE away_team = "footscray"</s> | {
"answer": "SELECT away_team AS score FROM table_name_66 WHERE away_team = \"footscray\"",
"context": "CREATE TABLE table_name_66 (away_team VARCHAR)",
"question": "What was the score for Footscray when they were the away team?"
} |
### QUESTION
What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows?
### CONTEXT
CREATE TABLE table_name_78 (Severe INTEGER, tropical_cyclones VARCHAR, tropical_lows VARCHAR)
### ANSWER
SELECT MAX(Severe) AS tropical_cyclones FROM table_name_78 WHERE tropical_cyclones = 10 AND tropical_lows = 14</s> | {
"answer": "SELECT MAX(Severe) AS tropical_cyclones FROM table_name_78 WHERE tropical_cyclones = 10 AND tropical_lows = 14",
"context": "CREATE TABLE table_name_78 (Severe INTEGER, tropical_cyclones VARCHAR, tropical_lows VARCHAR)",
"question": "What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows?"
} |
### QUESTION
What's the rank when the laps are fewer than 137 and the qual is 116.470?
### CONTEXT
CREATE TABLE table_name_99 (rank VARCHAR, laps VARCHAR, qual VARCHAR)
### ANSWER
SELECT rank FROM table_name_99 WHERE laps < 137 AND qual = "116.470"</s> | {
"answer": "SELECT rank FROM table_name_99 WHERE laps < 137 AND qual = \"116.470\"",
"context": "CREATE TABLE table_name_99 (rank VARCHAR, laps VARCHAR, qual VARCHAR)",
"question": "What's the rank when the laps are fewer than 137 and the qual is 116.470?"
} |
### QUESTION
What is the shortest length of a track in Norway that has a maximum grade of 15% and a vertical drop less than 122.22 m?
### CONTEXT
CREATE TABLE table_name_72 (length__m_ INTEGER, country VARCHAR, maximum_grade___percentage_ VARCHAR, vertical_drop__m_ VARCHAR)
### ANSWER
SELECT MIN(length__m_) FROM table_name_72 WHERE maximum_grade___percentage_ = "15" AND vertical_drop__m_ < 122.22 AND country = "norway"</s> | {
"answer": "SELECT MIN(length__m_) FROM table_name_72 WHERE maximum_grade___percentage_ = \"15\" AND vertical_drop__m_ < 122.22 AND country = \"norway\"",
"context": "CREATE TABLE table_name_72 (length__m_ INTEGER, country VARCHAR, maximum_grade___percentage_ VARCHAR, vertical_drop__m_ VARCHAR)",
"question": "What is the shortest length of a track in Norway that has a maximum grade of 15% and a vertical drop less than 122.22 m?"
} |
### QUESTION
How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20?
### CONTEXT
CREATE TABLE table_name_79 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR)
### ANSWER
SELECT SUM(attendance) FROM table_name_79 WHERE opponent = "west bromwich albion" AND result = "3 – 3" AND match > 20</s> | {
"answer": "SELECT SUM(attendance) FROM table_name_79 WHERE opponent = \"west bromwich albion\" AND result = \"3 – 3\" AND match > 20",
"context": "CREATE TABLE table_name_79 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR)",
"question": "How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20?"
} |
### QUESTION
WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000?
### CONTEXT
CREATE TABLE table_name_99 (match INTEGER, attendance VARCHAR, venue VARCHAR, date VARCHAR)
### ANSWER
SELECT MAX(match) FROM table_name_99 WHERE venue = "h" AND date = "22 september 1888" AND attendance < 4 OFFSET 000</s> | {
"answer": "SELECT MAX(match) FROM table_name_99 WHERE venue = \"h\" AND date = \"22 september 1888\" AND attendance < 4 OFFSET 000",
"context": "CREATE TABLE table_name_99 (match INTEGER, attendance VARCHAR, venue VARCHAR, date VARCHAR)",
"question": "WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000?"
} |
### QUESTION
What venue features carlton as the home side?
### CONTEXT
CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)
### ANSWER
SELECT venue FROM table_name_40 WHERE home_team = "carlton"</s> | {
"answer": "SELECT venue FROM table_name_40 WHERE home_team = \"carlton\"",
"context": "CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)",
"question": "What venue features carlton as the home side?"
} |
### QUESTION
Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013?
### CONTEXT
CREATE TABLE table_name_84 (form_factor VARCHAR, introduced VARCHAR, controller VARCHAR, capacities__gb_ VARCHAR)
### ANSWER
SELECT form_factor FROM table_name_84 WHERE controller = "sandforce" AND capacities__gb_ = "80/120/180/240/360/480" AND introduced = "july 2013"</s> | {
"answer": "SELECT form_factor FROM table_name_84 WHERE controller = \"sandforce\" AND capacities__gb_ = \"80/120/180/240/360/480\" AND introduced = \"july 2013\"",
"context": "CREATE TABLE table_name_84 (form_factor VARCHAR, introduced VARCHAR, controller VARCHAR, capacities__gb_ VARCHAR)",
"question": "Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013?"
} |
### QUESTION
Which controller has an interface of pcie 2.0 × 8?
### CONTEXT
CREATE TABLE table_name_37 (controller VARCHAR, interface VARCHAR)
### ANSWER
SELECT controller FROM table_name_37 WHERE interface = "pcie 2.0 × 8"</s> | {
"answer": "SELECT controller FROM table_name_37 WHERE interface = \"pcie 2.0 × 8\"",
"context": "CREATE TABLE table_name_37 (controller VARCHAR, interface VARCHAR)",
"question": "Which controller has an interface of pcie 2.0 × 8?"
} |
### QUESTION
Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210?
### CONTEXT
CREATE TABLE table_name_67 (controller VARCHAR, nand_type VARCHAR, seq_read_write_mb_s VARCHAR)
### ANSWER
SELECT controller FROM table_name_67 WHERE nand_type = "25nm mlc-het" AND seq_read_write_mb_s = "270/210"</s> | {
"answer": "SELECT controller FROM table_name_67 WHERE nand_type = \"25nm mlc-het\" AND seq_read_write_mb_s = \"270/210\"",
"context": "CREATE TABLE table_name_67 (controller VARCHAR, nand_type VARCHAR, seq_read_write_mb_s VARCHAR)",
"question": "Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210?"
} |
### QUESTION
Which Blackpool has a Preston North End smaller than 46, and a Competition of other, and a Draw larger than 1?
### CONTEXT
CREATE TABLE table_name_94 (blackpool INTEGER, draw VARCHAR, preston_north_end VARCHAR, competition VARCHAR)
### ANSWER
SELECT SUM(blackpool) FROM table_name_94 WHERE preston_north_end < 46 AND competition = "other" AND draw > 1</s> | {
"answer": "SELECT SUM(blackpool) FROM table_name_94 WHERE preston_north_end < 46 AND competition = \"other\" AND draw > 1",
"context": "CREATE TABLE table_name_94 (blackpool INTEGER, draw VARCHAR, preston_north_end VARCHAR, competition VARCHAR)",
"question": "Which Blackpool has a Preston North End smaller than 46, and a Competition of other, and a Draw larger than 1?"
} |
### QUESTION
Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider?
### CONTEXT
CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR)
### ANSWER
SELECT winning_driver FROM table_name_96 WHERE winning_team = "opel team holzer 1" AND round < 9 AND fastest_lap = "bernd schneider"</s> | {
"answer": "SELECT winning_driver FROM table_name_96 WHERE winning_team = \"opel team holzer 1\" AND round < 9 AND fastest_lap = \"bernd schneider\"",
"context": "CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR)",
"question": "Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider?"
} |
### QUESTION
What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz?
### CONTEXT
CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR, winning_manufacturer VARCHAR)
### ANSWER
SELECT date FROM table_name_34 WHERE circuit = "hockenheimring" AND winning_manufacturer = "mercedes-benz"</s> | {
"answer": "SELECT date FROM table_name_34 WHERE circuit = \"hockenheimring\" AND winning_manufacturer = \"mercedes-benz\"",
"context": "CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR, winning_manufacturer VARCHAR)",
"question": "What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz?"
} |
### QUESTION
On what Surface was the match with a Score of 3-6, 1-6 played?
### CONTEXT
CREATE TABLE table_name_99 (surface VARCHAR, score VARCHAR)
### ANSWER
SELECT surface FROM table_name_99 WHERE score = "3-6, 1-6"</s> | {
"answer": "SELECT surface FROM table_name_99 WHERE score = \"3-6, 1-6\"",
"context": "CREATE TABLE table_name_99 (surface VARCHAR, score VARCHAR)",
"question": "On what Surface was the match with a Score of 3-6, 1-6 played?"
} |
### QUESTION
What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?
### CONTEXT
CREATE TABLE table_name_65 (interview INTEGER, average VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)
### ANSWER
SELECT AVG(interview) FROM table_name_65 WHERE preliminaries > 8.27 AND evening_gown = 8.85 AND average < 8.842</s> | {
"answer": "SELECT AVG(interview) FROM table_name_65 WHERE preliminaries > 8.27 AND evening_gown = 8.85 AND average < 8.842",
"context": "CREATE TABLE table_name_65 (interview INTEGER, average VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)",
"question": "What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?"
} |
### QUESTION
What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?
### CONTEXT
CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR)
### ANSWER
SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = "ok" AND percent_change__1990_2000_ = "a078 +17.22%"</s> | {
"answer": "SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = \"ok\" AND percent_change__1990_2000_ = \"a078 +17.22%\"",
"context": "CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR)",
"question": "What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?"
} |
### QUESTION
Which Winning constructor has a Winning driver of felice nazzaro?
### CONTEXT
CREATE TABLE table_name_52 (winning_constructor VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT winning_constructor FROM table_name_52 WHERE winning_driver = "felice nazzaro"</s> | {
"answer": "SELECT winning_constructor FROM table_name_52 WHERE winning_driver = \"felice nazzaro\"",
"context": "CREATE TABLE table_name_52 (winning_constructor VARCHAR, winning_driver VARCHAR)",
"question": "Which Winning constructor has a Winning driver of felice nazzaro?"
} |
### QUESTION
Which Date has a Winning constructor of fiat and a Winning driver of louis wagner?
### CONTEXT
CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT date FROM table_name_34 WHERE winning_constructor = "fiat" AND winning_driver = "louis wagner"</s> | {
"answer": "SELECT date FROM table_name_34 WHERE winning_constructor = \"fiat\" AND winning_driver = \"louis wagner\"",
"context": "CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)",
"question": "Which Date has a Winning constructor of fiat and a Winning driver of louis wagner?"
} |
### QUESTION
What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds?
### CONTEXT
CREATE TABLE table_name_14 (silver INTEGER, total VARCHAR, gold VARCHAR)
### ANSWER
SELECT SUM(silver) FROM table_name_14 WHERE total > 14 AND gold > 16</s> | {
"answer": "SELECT SUM(silver) FROM table_name_14 WHERE total > 14 AND gold > 16",
"context": "CREATE TABLE table_name_14 (silver INTEGER, total VARCHAR, gold VARCHAR)",
"question": "What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds?"
} |
### QUESTION
Which game is named tsegay kebede category:articles with hcards?
### CONTEXT
CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR)
### ANSWER
SELECT games FROM table_name_70 WHERE name = "tsegay kebede category:articles with hcards"</s> | {
"answer": "SELECT games FROM table_name_70 WHERE name = \"tsegay kebede category:articles with hcards\"",
"context": "CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR)",
"question": "Which game is named tsegay kebede category:articles with hcards?"
} |
### QUESTION
What is the medal named fatuma roba category:articles with hcards for?
### CONTEXT
CREATE TABLE table_name_73 (medal VARCHAR, name VARCHAR)
### ANSWER
SELECT medal FROM table_name_73 WHERE name = "fatuma roba category:articles with hcards"</s> | {
"answer": "SELECT medal FROM table_name_73 WHERE name = \"fatuma roba category:articles with hcards\"",
"context": "CREATE TABLE table_name_73 (medal VARCHAR, name VARCHAR)",
"question": "What is the medal named fatuma roba category:articles with hcards for?"
} |
### QUESTION
What is the game named derartu tulu category:articles with hcards?
### CONTEXT
CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR)
### ANSWER
SELECT games FROM table_name_15 WHERE name = "derartu tulu category:articles with hcards"</s> | {
"answer": "SELECT games FROM table_name_15 WHERE name = \"derartu tulu category:articles with hcards\"",
"context": "CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR)",
"question": "What is the game named derartu tulu category:articles with hcards?"
} |
### QUESTION
What time was the game played against Cagliari that lasted 16 rounds?
### CONTEXT
CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR)
### ANSWER
SELECT time FROM table_name_32 WHERE opponent = "cagliari" AND round = "16"</s> | {
"answer": "SELECT time FROM table_name_32 WHERE opponent = \"cagliari\" AND round = \"16\"",
"context": "CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR)",
"question": "What time was the game played against Cagliari that lasted 16 rounds?"
} |
### QUESTION
Whihc Date is the lowest one that has a Competition of league, and a Venue of away, and an Opponent of swindon wildcats, and an Attendance larger than 1,201?
### CONTEXT
CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR, opponent VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT MIN(date) FROM table_name_51 WHERE competition = "league" AND venue = "away" AND opponent = "swindon wildcats" AND attendance > 1 OFFSET 201</s> | {
"answer": "SELECT MIN(date) FROM table_name_51 WHERE competition = \"league\" AND venue = \"away\" AND opponent = \"swindon wildcats\" AND attendance > 1 OFFSET 201",
"context": "CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR, opponent VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "Whihc Date is the lowest one that has a Competition of league, and a Venue of away, and an Opponent of swindon wildcats, and an Attendance larger than 1,201?"
} |
### QUESTION
How many votes were tallied in 1956 with a % of national vote larger than 11.47?
### CONTEXT
CREATE TABLE table_name_66 (votes INTEGER, date VARCHAR, _percentage_of_national_vote VARCHAR)
### ANSWER
SELECT SUM(votes) FROM table_name_66 WHERE date = "1956" AND _percentage_of_national_vote > 11.47</s> | {
"answer": "SELECT SUM(votes) FROM table_name_66 WHERE date = \"1956\" AND _percentage_of_national_vote > 11.47",
"context": "CREATE TABLE table_name_66 (votes INTEGER, date VARCHAR, _percentage_of_national_vote VARCHAR)",
"question": "How many votes were tallied in 1956 with a % of national vote larger than 11.47?"
} |
### QUESTION
How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points?
### CONTEXT
CREATE TABLE table_name_98 (attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_98 WHERE home = "penguins" AND record = "14–19–6" AND points < 34</s> | {
"answer": "SELECT COUNT(attendance) FROM table_name_98 WHERE home = \"penguins\" AND record = \"14–19–6\" AND points < 34",
"context": "CREATE TABLE table_name_98 (attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR)",
"question": "How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points?"
} |
### QUESTION
Who is the November playmate with the July playmate Hope Marie Carlton?
### CONTEXT
CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)
### ANSWER
SELECT november FROM table_name_66 WHERE july = "hope marie carlton"</s> | {
"answer": "SELECT november FROM table_name_66 WHERE july = \"hope marie carlton\"",
"context": "CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)",
"question": "Who is the November playmate with the July playmate Hope Marie Carlton?"
} |
### QUESTION
Which yard has a Completion of 64.9%?
### CONTEXT
CREATE TABLE table_name_26 (yards VARCHAR, completion__percentage VARCHAR)
### ANSWER
SELECT yards FROM table_name_26 WHERE completion__percentage = "64.9%"</s> | {
"answer": "SELECT yards FROM table_name_26 WHERE completion__percentage = \"64.9%\"",
"context": "CREATE TABLE table_name_26 (yards VARCHAR, completion__percentage VARCHAR)",
"question": "Which yard has a Completion of 64.9%?"
} |
### QUESTION
which Completion % has a Yards of 2,175?
### CONTEXT
CREATE TABLE table_name_57 (completion__percentage VARCHAR, yards VARCHAR)
### ANSWER
SELECT completion__percentage FROM table_name_57 WHERE yards = "2,175"</s> | {
"answer": "SELECT completion__percentage FROM table_name_57 WHERE yards = \"2,175\"",
"context": "CREATE TABLE table_name_57 (completion__percentage VARCHAR, yards VARCHAR)",
"question": "which Completion % has a Yards of 2,175?"
} |
### QUESTION
Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27
### CONTEXT
CREATE TABLE table_name_75 (interview INTEGER, province VARCHAR, swimsuit VARCHAR)
### ANSWER
SELECT SUM(interview) FROM table_name_75 WHERE province = "monte cristi" AND swimsuit > 7.27</s> | {
"answer": "SELECT SUM(interview) FROM table_name_75 WHERE province = \"monte cristi\" AND swimsuit > 7.27",
"context": "CREATE TABLE table_name_75 (interview INTEGER, province VARCHAR, swimsuit VARCHAR)",
"question": "Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27"
} |
### QUESTION
What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?
### CONTEXT
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7</s> | {
"answer": "SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7",
"context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)",
"question": "What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?"
} |
### QUESTION
Which tournament had a score of 6–3, 7–6?
### CONTEXT
CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)
### ANSWER
SELECT tournament FROM table_name_75 WHERE score = "6–3, 7–6"</s> | {
"answer": "SELECT tournament FROM table_name_75 WHERE score = \"6–3, 7–6\"",
"context": "CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)",
"question": "Which tournament had a score of 6–3, 7–6?"
} |
### QUESTION
What is the total number of round picks from the Morris Brown School?
### CONTEXT
CREATE TABLE table_name_59 (round VARCHAR, school VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_59 WHERE school = "morris brown"</s> | {
"answer": "SELECT COUNT(round) FROM table_name_59 WHERE school = \"morris brown\"",
"context": "CREATE TABLE table_name_59 (round VARCHAR, school VARCHAR)",
"question": "What is the total number of round picks from the Morris Brown School?"
} |
### QUESTION
What was the final score of the game at the astrodome?
### CONTEXT
CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)
### ANSWER
SELECT final_score FROM table_name_74 WHERE stadium = "astrodome"</s> | {
"answer": "SELECT final_score FROM table_name_74 WHERE stadium = \"astrodome\"",
"context": "CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)",
"question": "What was the final score of the game at the astrodome?"
} |
### QUESTION
What was the name of the Visiting team at Jack Murphy Stadium?
### CONTEXT
CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)
### ANSWER
SELECT visiting_team FROM table_name_90 WHERE stadium = "jack murphy stadium"</s> | {
"answer": "SELECT visiting_team FROM table_name_90 WHERE stadium = \"jack murphy stadium\"",
"context": "CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)",
"question": "What was the name of the Visiting team at Jack Murphy Stadium?"
} |
### QUESTION
Are there any Teams after 1997?
### CONTEXT
CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)
### ANSWER
SELECT team FROM table_name_21 WHERE year > 1997</s> | {
"answer": "SELECT team FROM table_name_21 WHERE year > 1997",
"context": "CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)",
"question": "Are there any Teams after 1997?"
} |
### QUESTION
What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?
### CONTEXT
CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"</s> | {
"answer": "SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = \"bury\"",
"context": "CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)",
"question": "What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?"
} |
### QUESTION
What place did the singer in atomic kitten finish?
### CONTEXT
CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)
### ANSWER
SELECT finished FROM table_name_91 WHERE famous_for = "singer in atomic kitten"</s> | {
"answer": "SELECT finished FROM table_name_91 WHERE famous_for = \"singer in atomic kitten\"",
"context": "CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)",
"question": "What place did the singer in atomic kitten finish?"
} |
### QUESTION
Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature?
### CONTEXT
CREATE TABLE table_name_64 (feature VARCHAR, driving_force_pro VARCHAR, driving_force_ex VARCHAR, driving_force_gt VARCHAR)
### ANSWER
SELECT feature FROM table_name_64 WHERE driving_force_ex = "no" AND driving_force_gt = "yes" AND driving_force_pro = "yes"</s> | {
"answer": "SELECT feature FROM table_name_64 WHERE driving_force_ex = \"no\" AND driving_force_gt = \"yes\" AND driving_force_pro = \"yes\"",
"context": "CREATE TABLE table_name_64 (feature VARCHAR, driving_force_pro VARCHAR, driving_force_ex VARCHAR, driving_force_gt VARCHAR)",
"question": "Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature?"
} |
### QUESTION
What group on the island of Faray has a Height (m) of 32 and a Population of 0?
### CONTEXT
CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR)
### ANSWER
SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = "0" AND island = "faray"</s> | {
"answer": "SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = \"0\" AND island = \"faray\"",
"context": "CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR)",
"question": "What group on the island of Faray has a Height (m) of 32 and a Population of 0?"
} |
### QUESTION
Which Drawn is the average one that has a Position smaller than 9, and Points smaller than 22, and a Lost smaller than 9, and an Against larger than 29?
### CONTEXT
CREATE TABLE table_name_76 (drawn INTEGER, against VARCHAR, lost VARCHAR, position VARCHAR, points VARCHAR)
### ANSWER
SELECT AVG(drawn) FROM table_name_76 WHERE position < 9 AND points < 22 AND lost < 9 AND against > 29</s> | {
"answer": "SELECT AVG(drawn) FROM table_name_76 WHERE position < 9 AND points < 22 AND lost < 9 AND against > 29",
"context": "CREATE TABLE table_name_76 (drawn INTEGER, against VARCHAR, lost VARCHAR, position VARCHAR, points VARCHAR)",
"question": "Which Drawn is the average one that has a Position smaller than 9, and Points smaller than 22, and a Lost smaller than 9, and an Against larger than 29?"
} |
### QUESTION
What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?
### CONTEXT
CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)
### ANSWER
SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17"</s> | {
"answer": "SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = \"00017 17\"",
"context": "CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)",
"question": "What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?"
} |
### QUESTION
Which Frequency has a Website of •, and a Webcast of •in san antonio?
### CONTEXT
CREATE TABLE table_name_44 (frequency INTEGER, city_of_license VARCHAR, website VARCHAR, webcast VARCHAR)
### ANSWER
SELECT AVG(frequency) FROM table_name_44 WHERE website = "•" AND webcast = "•" AND city_of_license = "san antonio"</s> | {
"answer": "SELECT AVG(frequency) FROM table_name_44 WHERE website = \"•\" AND webcast = \"•\" AND city_of_license = \"san antonio\"",
"context": "CREATE TABLE table_name_44 (frequency INTEGER, city_of_license VARCHAR, website VARCHAR, webcast VARCHAR)",
"question": "Which Frequency has a Website of •, and a Webcast of •in san antonio?"
} |
### QUESTION
What year was the Album/Song Speaking louder than before?
### CONTEXT
CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_39 WHERE album___song = "speaking louder than before"</s> | {
"answer": "SELECT SUM(year) FROM table_name_39 WHERE album___song = \"speaking louder than before\"",
"context": "CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR)",
"question": "What year was the Album/Song Speaking louder than before?"
} |
### QUESTION
What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?
### CONTEXT
CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
### ANSWER
SELECT SUM(week) FROM table_name_97 WHERE opponent = "houston oilers" AND attendance > 54 OFFSET 582</s> | {
"answer": "SELECT SUM(week) FROM table_name_97 WHERE opponent = \"houston oilers\" AND attendance > 54 OFFSET 582",
"context": "CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR)",
"question": "What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?"
} |
### QUESTION
Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw?
### CONTEXT
CREATE TABLE table_name_96 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR, fuel_propulsion VARCHAR, year VARCHAR)
### ANSWER
SELECT numbers__quantity_ordered_ FROM table_name_96 WHERE fuel_propulsion = "cng" AND year < 2008 AND make__model = "nabi 40-lfw"</s> | {
"answer": "SELECT numbers__quantity_ordered_ FROM table_name_96 WHERE fuel_propulsion = \"cng\" AND year < 2008 AND make__model = \"nabi 40-lfw\"",
"context": "CREATE TABLE table_name_96 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR, fuel_propulsion VARCHAR, year VARCHAR)",
"question": "Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw?"
} |
### QUESTION
Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?
### CONTEXT
CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR)
### ANSWER
SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = "eldorado national passport"</s> | {
"answer": "SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = \"eldorado national passport\"",
"context": "CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR)",
"question": "Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?"
} |
### QUESTION
What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?
### CONTEXT
CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR)
### ANSWER
SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = "coed" AND authority = "state integrated" AND area = "georgetown"</s> | {
"answer": "SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = \"coed\" AND authority = \"state integrated\" AND area = \"georgetown\"",
"context": "CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR)",
"question": "What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?"
} |
### QUESTION
Opponent of @ blue jays, and a Date of october 6 had what score?
### CONTEXT
CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_19 WHERE opponent = "@ blue jays" AND date = "october 6"</s> | {
"answer": "SELECT score FROM table_name_19 WHERE opponent = \"@ blue jays\" AND date = \"october 6\"",
"context": "CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR)",
"question": "Opponent of @ blue jays, and a Date of october 6 had what score?"
} |
### QUESTION
How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?
### CONTEXT
CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
### ANSWER
SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = "cd sabadell" AND played > 38</s> | {
"answer": "SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = \"cd sabadell\" AND played > 38",
"context": "CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)",
"question": "How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?"
} |
### QUESTION
What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?
### CONTEXT
CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)
### ANSWER
SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = "30-8"</s> | {
"answer": "SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = \"30-8\"",
"context": "CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)",
"question": "What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?"
} |
### QUESTION
What is the listed Location with a # found of 4?
### CONTEXT
CREATE TABLE table_name_47 (location VARCHAR, _number_found VARCHAR)
### ANSWER
SELECT location FROM table_name_47 WHERE _number_found = "4"</s> | {
"answer": "SELECT location FROM table_name_47 WHERE _number_found = \"4\"",
"context": "CREATE TABLE table_name_47 (location VARCHAR, _number_found VARCHAR)",
"question": "What is the listed Location with a # found of 4?"
} |
### QUESTION
Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower?
### CONTEXT
CREATE TABLE table_name_37 (country VARCHAR, pinnacle_height VARCHAR, name VARCHAR)
### ANSWER
SELECT country FROM table_name_37 WHERE pinnacle_height = "metres (ft)" AND name = "azeri tv tower"</s> | {
"answer": "SELECT country FROM table_name_37 WHERE pinnacle_height = \"metres (ft)\" AND name = \"azeri tv tower\"",
"context": "CREATE TABLE table_name_37 (country VARCHAR, pinnacle_height VARCHAR, name VARCHAR)",
"question": "Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower?"
} |
### QUESTION
Who is The Spouse of the Duchess that has a Became Duchess on 31 october 1733 husband's accession?
### CONTEXT
CREATE TABLE table_name_31 (spouse VARCHAR, became_duchess VARCHAR)
### ANSWER
SELECT spouse FROM table_name_31 WHERE became_duchess = "31 october 1733 husband's accession"</s> | {
"answer": "SELECT spouse FROM table_name_31 WHERE became_duchess = \"31 october 1733 husband's accession\"",
"context": "CREATE TABLE table_name_31 (spouse VARCHAR, became_duchess VARCHAR)",
"question": "Who is The Spouse of the Duchess that has a Became Duchess on 31 october 1733 husband's accession?"
} |
### QUESTION
What country has chunkath, mohan verghese as the name?
### CONTEXT
CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)
### ANSWER
SELECT country FROM table_name_88 WHERE name = "chunkath, mohan verghese"</s> | {
"answer": "SELECT country FROM table_name_88 WHERE name = \"chunkath, mohan verghese\"",
"context": "CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)",
"question": "What country has chunkath, mohan verghese as the name?"
} |
### QUESTION
Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić
### CONTEXT
CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_1 WHERE outcome = "runner-up" AND surface = "hard" AND opponents_in_the_final = "michaël llodra nenad zimonjić"</s> | {
"answer": "SELECT score_in_the_final FROM table_name_1 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND opponents_in_the_final = \"michaël llodra nenad zimonjić\"",
"context": "CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)",
"question": "Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić"
} |
### QUESTION
What time did bruce anstey complete in a honda 1000cc?
### CONTEXT
CREATE TABLE table_name_88 (time VARCHAR, machine VARCHAR, rider_s_ VARCHAR)
### ANSWER
SELECT time FROM table_name_88 WHERE machine = "honda 1000cc" AND rider_s_ = "bruce anstey"</s> | {
"answer": "SELECT time FROM table_name_88 WHERE machine = \"honda 1000cc\" AND rider_s_ = \"bruce anstey\"",
"context": "CREATE TABLE table_name_88 (time VARCHAR, machine VARCHAR, rider_s_ VARCHAR)",
"question": "What time did bruce anstey complete in a honda 1000cc?"
} |
### QUESTION
What date was the ship named Manhattan completed?
### CONTEXT
CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR)
### ANSWER
SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = "manhattan"</s> | {
"answer": "SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = \"manhattan\"",
"context": "CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR)",
"question": "What date was the ship named Manhattan completed?"
} |
### QUESTION
Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture?
### CONTEXT
CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR)
### ANSWER
SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8</s> | {
"answer": "SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8",
"context": "CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR)",
"question": "Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture?"
} |
### QUESTION
Which 2005 has a Tournament of grand slam tournaments?
### CONTEXT
CREATE TABLE table_name_52 (tournament VARCHAR)
### ANSWER
SELECT 2005 FROM table_name_52 WHERE tournament = "grand slam tournaments"</s> | {
"answer": "SELECT 2005 FROM table_name_52 WHERE tournament = \"grand slam tournaments\"",
"context": "CREATE TABLE table_name_52 (tournament VARCHAR)",
"question": "Which 2005 has a Tournament of grand slam tournaments?"
} |
### QUESTION
What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?
### CONTEXT
CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
### ANSWER
SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = "elche cf" AND played > 38</s> | {
"answer": "SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = \"elche cf\" AND played > 38",
"context": "CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)",
"question": "What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?"
} |
### QUESTION
What is the highest number of doctorates the college of informatics and systems, which has 0 specialists and less than 2 master's degrees, have?
### CONTEXT
CREATE TABLE table_name_10 (doctorate INTEGER, masters VARCHAR, specialist VARCHAR, college VARCHAR)
### ANSWER
SELECT MAX(doctorate) FROM table_name_10 WHERE specialist = 0 AND college = "informatics and systems" AND masters < 2</s> | {
"answer": "SELECT MAX(doctorate) FROM table_name_10 WHERE specialist = 0 AND college = \"informatics and systems\" AND masters < 2",
"context": "CREATE TABLE table_name_10 (doctorate INTEGER, masters VARCHAR, specialist VARCHAR, college VARCHAR)",
"question": "What is the highest number of doctorates the college of informatics and systems, which has 0 specialists and less than 2 master's degrees, have?"
} |
### QUESTION
What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?
### CONTEXT
CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)
### ANSWER
SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = "220kw (299hp) @ 4000"</s> | {
"answer": "SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = \"220kw (299hp) @ 4000\"",
"context": "CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)",
"question": "What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?"
} |
### QUESTION
Which Tie # has an Away team of slough town?
### CONTEXT
CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)
### ANSWER
SELECT tie_no FROM table_name_66 WHERE away_team = "slough town"</s> | {
"answer": "SELECT tie_no FROM table_name_66 WHERE away_team = \"slough town\"",
"context": "CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)",
"question": "Which Tie # has an Away team of slough town?"
} |
### QUESTION
Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?
### CONTEXT
CREATE TABLE table_name_40 (wins INTEGER, points VARCHAR, year VARCHAR, championship_finish VARCHAR)
### ANSWER
SELECT MAX(wins) FROM table_name_40 WHERE year > 1996 AND championship_finish = "1st" AND points < 168</s> | {
"answer": "SELECT MAX(wins) FROM table_name_40 WHERE year > 1996 AND championship_finish = \"1st\" AND points < 168",
"context": "CREATE TABLE table_name_40 (wins INTEGER, points VARCHAR, year VARCHAR, championship_finish VARCHAR)",
"question": "Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?"
} |
### QUESTION
Which Year is the highest that has a Team of walker racing, and Wins larger than 1?
### CONTEXT
CREATE TABLE table_name_58 (year INTEGER, team VARCHAR, wins VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_58 WHERE team = "walker racing" AND wins > 1</s> | {
"answer": "SELECT MAX(year) FROM table_name_58 WHERE team = \"walker racing\" AND wins > 1",
"context": "CREATE TABLE table_name_58 (year INTEGER, team VARCHAR, wins VARCHAR)",
"question": "Which Year is the highest that has a Team of walker racing, and Wins larger than 1?"
} |
### QUESTION
Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji?
### CONTEXT
CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR)
### ANSWER
SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = "kōmyōji"</s> | {
"answer": "SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = \"kōmyōji\"",
"context": "CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR)",
"question": "Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji?"
} |
### QUESTION
What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?
### CONTEXT
CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(other) FROM table_name_14 WHERE name = "simon gillett category:articles with hcards" AND total < 34</s> | {
"answer": "SELECT SUM(other) FROM table_name_14 WHERE name = \"simon gillett category:articles with hcards\" AND total < 34",
"context": "CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR)",
"question": "What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?"
} |
### QUESTION
What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?
### CONTEXT
CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_60 WHERE name = "simon gillett category:articles with hcards" AND other > 3</s> | {
"answer": "SELECT AVG(total) FROM table_name_60 WHERE name = \"simon gillett category:articles with hcards\" AND other > 3",
"context": "CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR)",
"question": "What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?"
} |
### QUESTION
What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?
### CONTEXT
CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = "gareth farrelly category:articles with hcards" AND league > 1</s> | {
"answer": "SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = \"gareth farrelly category:articles with hcards\" AND league > 1",
"context": "CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR)",
"question": "What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?"
} |
### QUESTION
What is the overall number for a kicker with a pick of less than 6?
### CONTEXT
CREATE TABLE table_name_84 (overall VARCHAR, position VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT COUNT(overall) FROM table_name_84 WHERE position = "kicker" AND pick__number < 6</s> | {
"answer": "SELECT COUNT(overall) FROM table_name_84 WHERE position = \"kicker\" AND pick__number < 6",
"context": "CREATE TABLE table_name_84 (overall VARCHAR, position VARCHAR, pick__number VARCHAR)",
"question": "What is the overall number for a kicker with a pick of less than 6?"
} |
### QUESTION
Name the champion for 2000
### CONTEXT
CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)
### ANSWER
SELECT champion FROM table_name_52 WHERE year = "2000"</s> | {
"answer": "SELECT champion FROM table_name_52 WHERE year = \"2000\"",
"context": "CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)",
"question": "Name the champion for 2000"
} |
### QUESTION
Which removal treaty covered the chickasaw nation?
### CONTEXT
CREATE TABLE table_name_32 (removal_treaty__year_signed_ VARCHAR, nation VARCHAR)
### ANSWER
SELECT removal_treaty__year_signed_ FROM table_name_32 WHERE nation = "chickasaw"</s> | {
"answer": "SELECT removal_treaty__year_signed_ FROM table_name_32 WHERE nation = \"chickasaw\"",
"context": "CREATE TABLE table_name_32 (removal_treaty__year_signed_ VARCHAR, nation VARCHAR)",
"question": "Which removal treaty covered the chickasaw nation?"
} |
### QUESTION
what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904?
### CONTEXT
CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR)
### ANSWER
SELECT name FROM table_name_87 WHERE rank = "lieutenant colonel" AND begin_date = "1904-02-22 22 february 1904"</s> | {
"answer": "SELECT name FROM table_name_87 WHERE rank = \"lieutenant colonel\" AND begin_date = \"1904-02-22 22 february 1904\"",
"context": "CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR)",
"question": "what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904?"
} |
### QUESTION
Oklahoma State produced a player in which position in the draft?
### CONTEXT
CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT position FROM table_name_26 WHERE school_club_team = "oklahoma state"</s> | {
"answer": "SELECT position FROM table_name_26 WHERE school_club_team = \"oklahoma state\"",
"context": "CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR)",
"question": "Oklahoma State produced a player in which position in the draft?"
} |
### QUESTION
Record of 8–1, and a Week larger than 9 had what highest attendance?
### CONTEXT
CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_18 WHERE record = "8–1" AND week > 9</s> | {
"answer": "SELECT MAX(attendance) FROM table_name_18 WHERE record = \"8–1\" AND week > 9",
"context": "CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)",
"question": "Record of 8–1, and a Week larger than 9 had what highest attendance?"
} |
### QUESTION
What is the highest number of silvers for qatar with under 8 total, 0 golds, and over 2 bronzes?
### CONTEXT
CREATE TABLE table_name_9 (silver INTEGER, bronze VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)
### ANSWER
SELECT MAX(silver) FROM table_name_9 WHERE total < 8 AND gold = 0 AND nation = "qatar" AND bronze > 2</s> | {
"answer": "SELECT MAX(silver) FROM table_name_9 WHERE total < 8 AND gold = 0 AND nation = \"qatar\" AND bronze > 2",
"context": "CREATE TABLE table_name_9 (silver INTEGER, bronze VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)",
"question": "What is the highest number of silvers for qatar with under 8 total, 0 golds, and over 2 bronzes?"
} |
### QUESTION
How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?
### CONTEXT
CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR)
### ANSWER
SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737</s> | {
"answer": "SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737",
"context": "CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR)",
"question": "How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?"
} |
### QUESTION
Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?
### CONTEXT
CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR)
### ANSWER
SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = "yes" AND open_standard = "no" AND interactivity_support = "yes"</s> | {
"answer": "SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = \"yes\" AND open_standard = \"no\" AND interactivity_support = \"yes\"",
"context": "CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR)",
"question": "Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?"
} |
### QUESTION
Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?
### CONTEXT
CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)
### ANSWER
SELECT format FROM table_name_22 WHERE interactivity_support = "no" AND word_wrap_support = "yes" AND image_support = "yes" AND open_standard = "yes"</s> | {
"answer": "SELECT format FROM table_name_22 WHERE interactivity_support = \"no\" AND word_wrap_support = \"yes\" AND image_support = \"yes\" AND open_standard = \"yes\"",
"context": "CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)",
"question": "Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?"
} |
### QUESTION
What is the result of the game on May 14 with Philadelphia as the road team?
### CONTEXT
CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_48 WHERE road_team = "philadelphia" AND date = "may 14"</s> | {
"answer": "SELECT result FROM table_name_48 WHERE road_team = \"philadelphia\" AND date = \"may 14\"",
"context": "CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)",
"question": "What is the result of the game on May 14 with Philadelphia as the road team?"
} |
### QUESTION
What is the road team of the game with Philadelphia as the home team with a result of 105-102?
### CONTEXT
CREATE TABLE table_name_53 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)
### ANSWER
SELECT road_team FROM table_name_53 WHERE home_team = "philadelphia" AND result = "105-102"</s> | {
"answer": "SELECT road_team FROM table_name_53 WHERE home_team = \"philadelphia\" AND result = \"105-102\"",
"context": "CREATE TABLE table_name_53 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)",
"question": "What is the road team of the game with Philadelphia as the home team with a result of 105-102?"
} |
### QUESTION
Which District has a First elected of 1856, and an Incumbent of william kellogg?
### CONTEXT
CREATE TABLE table_name_20 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
### ANSWER
SELECT district FROM table_name_20 WHERE first_elected = 1856 AND incumbent = "william kellogg"</s> | {
"answer": "SELECT district FROM table_name_20 WHERE first_elected = 1856 AND incumbent = \"william kellogg\"",
"context": "CREATE TABLE table_name_20 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)",
"question": "Which District has a First elected of 1856, and an Incumbent of william kellogg?"
} |
### QUESTION
What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?
### CONTEXT
CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = "switzerland" AND silver < 0</s> | {
"answer": "SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = \"switzerland\" AND silver < 0",
"context": "CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)",
"question": "What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?"
} |
### QUESTION
Which is the lowest round to have a pick of 12 and position of linebacker?
### CONTEXT
CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = "linebacker"</s> | {
"answer": "SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = \"linebacker\"",
"context": "CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR)",
"question": "Which is the lowest round to have a pick of 12 and position of linebacker?"
} |
### QUESTION
How many overall values have a college of Notre Dame and rounds over 2?
### CONTEXT
CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR)
### ANSWER
SELECT COUNT(overall) FROM table_name_97 WHERE college = "notre dame" AND round > 2</s> | {
"answer": "SELECT COUNT(overall) FROM table_name_97 WHERE college = \"notre dame\" AND round > 2",
"context": "CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR)",
"question": "How many overall values have a college of Notre Dame and rounds over 2?"
} |
### QUESTION
Name the date for 2004 afc asian cup qualifier
### CONTEXT
CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR)
### ANSWER
SELECT date FROM table_name_23 WHERE competition = "2004 afc asian cup qualifier"</s> | {
"answer": "SELECT date FROM table_name_23 WHERE competition = \"2004 afc asian cup qualifier\"",
"context": "CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR)",
"question": "Name the date for 2004 afc asian cup qualifier"
} |
### QUESTION
How many Lost have a Team of flamengo, and an Against smaller than 5?
### CONTEXT
CREATE TABLE table_name_92 (lost VARCHAR, team VARCHAR, against VARCHAR)
### ANSWER
SELECT COUNT(lost) FROM table_name_92 WHERE team = "flamengo" AND against < 5</s> | {
"answer": "SELECT COUNT(lost) FROM table_name_92 WHERE team = \"flamengo\" AND against < 5",
"context": "CREATE TABLE table_name_92 (lost VARCHAR, team VARCHAR, against VARCHAR)",
"question": "How many Lost have a Team of flamengo, and an Against smaller than 5?"
} |
### QUESTION
Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?
### CONTEXT
CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
### ANSWER
SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008</s> | {
"answer": "SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008",
"context": "CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)",
"question": "Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.