text
stringlengths
146
1.06k
source
dict
### QUESTION Which bridge is located in Nectar, in Blount County? ### CONTEXT CREATE TABLE table_name_17 (name VARCHAR, county VARCHAR, location VARCHAR) ### ANSWER SELECT name FROM table_name_17 WHERE county = "blount" AND location = "nectar"
{ "answer": "SELECT name FROM table_name_17 WHERE county = \"blount\" AND location = \"nectar\"", "context": "CREATE TABLE table_name_17 (name VARCHAR, county VARCHAR, location VARCHAR)", "question": "Which bridge is located in Nectar, in Blount County?" }
### QUESTION What is the result for director Said Elmarouk before 2008? ### CONTEXT CREATE TABLE table_name_2 (result VARCHAR, director VARCHAR, year VARCHAR) ### ANSWER SELECT result FROM table_name_2 WHERE director = "said elmarouk" AND year < 2008
{ "answer": "SELECT result FROM table_name_2 WHERE director = \"said elmarouk\" AND year < 2008", "context": "CREATE TABLE table_name_2 (result VARCHAR, director VARCHAR, year VARCHAR)", "question": "What is the result for director Said Elmarouk before 2008?" }
### QUESTION Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ryō? ### CONTEXT CREATE TABLE table_name_89 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) ### ANSWER SELECT manufacturer FROM table_name_89 WHERE laps = 21 AND grid > 16 AND rider = "akira ryō"
{ "answer": "SELECT manufacturer FROM table_name_89 WHERE laps = 21 AND grid > 16 AND rider = \"akira ryō\"", "context": "CREATE TABLE table_name_89 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)", "question": "Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ryō?" }
### QUESTION What is the average played for entries with fewer than 65 goals against, points 1 of 19 2, and a position higher than 15? ### CONTEXT CREATE TABLE table_name_89 (played INTEGER, goals_against VARCHAR, position VARCHAR, points_1 VARCHAR) ### ANSWER SELECT AVG(played) FROM table_name_89 WHERE position < 15 AND points_1 = "19 2" AND goals_against < 65
{ "answer": "SELECT AVG(played) FROM table_name_89 WHERE position < 15 AND points_1 = \"19 2\" AND goals_against < 65", "context": "CREATE TABLE table_name_89 (played INTEGER, goals_against VARCHAR, position VARCHAR, points_1 VARCHAR)", "question": "What is the average played for entries with fewer than 65 goals against, points 1 of 19 2, and a position higher than 15?" }
### QUESTION In what year was the republican incumbent from Kentucky 2 district first elected? ### CONTEXT CREATE TABLE table_name_37 (first_elected INTEGER, party VARCHAR, district VARCHAR) ### ANSWER SELECT SUM(first_elected) FROM table_name_37 WHERE party = "republican" AND district = "kentucky 2"
{ "answer": "SELECT SUM(first_elected) FROM table_name_37 WHERE party = \"republican\" AND district = \"kentucky 2\"", "context": "CREATE TABLE table_name_37 (first_elected INTEGER, party VARCHAR, district VARCHAR)", "question": "In what year was the republican incumbent from Kentucky 2 district first elected?" }
### QUESTION What is the name of the team with round less than 2, and the nationality is the United States? ### CONTEXT CREATE TABLE table_name_25 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR) ### ANSWER SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = "united states"
{ "answer": "SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = \"united states\"", "context": "CREATE TABLE table_name_25 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)", "question": "What is the name of the team with round less than 2, and the nationality is the United States?" }
### QUESTION Which duration was defeated by retired? ### CONTEXT CREATE TABLE table_name_84 (duration VARCHAR, defeated_by VARCHAR) ### ANSWER SELECT duration FROM table_name_84 WHERE defeated_by = "retired"
{ "answer": "SELECT duration FROM table_name_84 WHERE defeated_by = \"retired\"", "context": "CREATE TABLE table_name_84 (duration VARCHAR, defeated_by VARCHAR)", "question": "Which duration was defeated by retired?" }
### QUESTION What is the name of the player from club Circolo Nautico Posillipo and a position of D? ### CONTEXT CREATE TABLE table_name_95 (name VARCHAR, pos VARCHAR, club VARCHAR) ### ANSWER SELECT name FROM table_name_95 WHERE pos = "d" AND club = "circolo nautico posillipo"
{ "answer": "SELECT name FROM table_name_95 WHERE pos = \"d\" AND club = \"circolo nautico posillipo\"", "context": "CREATE TABLE table_name_95 (name VARCHAR, pos VARCHAR, club VARCHAR)", "question": "What is the name of the player from club Circolo Nautico Posillipo and a position of D?" }
### QUESTION What is the total number of Round, when College/Junior/Club Team (League) is "Kelowna Rockets ( WHL )"? ### CONTEXT CREATE TABLE table_name_83 (round VARCHAR, college_junior_club_team__league_ VARCHAR) ### ANSWER SELECT COUNT(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "kelowna rockets ( whl )"
{ "answer": "SELECT COUNT(round) FROM table_name_83 WHERE college_junior_club_team__league_ = \"kelowna rockets ( whl )\"", "context": "CREATE TABLE table_name_83 (round VARCHAR, college_junior_club_team__league_ VARCHAR)", "question": "What is the total number of Round, when College/Junior/Club Team (League) is \"Kelowna Rockets ( WHL )\"?" }
### QUESTION What is the Opponent in the final of the game on february 2, 2004? ### CONTEXT CREATE TABLE table_name_68 (opponent_in_the_final VARCHAR, date VARCHAR) ### ANSWER SELECT opponent_in_the_final FROM table_name_68 WHERE date = "february 2, 2004"
{ "answer": "SELECT opponent_in_the_final FROM table_name_68 WHERE date = \"february 2, 2004\"", "context": "CREATE TABLE table_name_68 (opponent_in_the_final VARCHAR, date VARCHAR)", "question": "What is the Opponent in the final of the game on february 2, 2004?" }
### QUESTION What's the total attendance at anaheim stadium after 1983 when the result is 14-28? ### CONTEXT CREATE TABLE table_name_67 (attendance VARCHAR, result VARCHAR, year VARCHAR, venue VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_67 WHERE year > 1983 AND venue = "anaheim stadium" AND result = "14-28"
{ "answer": "SELECT COUNT(attendance) FROM table_name_67 WHERE year > 1983 AND venue = \"anaheim stadium\" AND result = \"14-28\"", "context": "CREATE TABLE table_name_67 (attendance VARCHAR, result VARCHAR, year VARCHAR, venue VARCHAR)", "question": "What's the total attendance at anaheim stadium after 1983 when the result is 14-28?" }
### QUESTION What country had a finish of t49? ### CONTEXT CREATE TABLE table_name_7 (country VARCHAR, finish VARCHAR) ### ANSWER SELECT country FROM table_name_7 WHERE finish = "t49"
{ "answer": "SELECT country FROM table_name_7 WHERE finish = \"t49\"", "context": "CREATE TABLE table_name_7 (country VARCHAR, finish VARCHAR)", "question": "What country had a finish of t49?" }
### QUESTION What is the Elevator of the Elected Elevated on September 21, 1179? ### CONTEXT CREATE TABLE table_name_50 (elevator VARCHAR, elevated VARCHAR) ### ANSWER SELECT elevator FROM table_name_50 WHERE elevated = "september 21, 1179"
{ "answer": "SELECT elevator FROM table_name_50 WHERE elevated = \"september 21, 1179\"", "context": "CREATE TABLE table_name_50 (elevator VARCHAR, elevated VARCHAR)", "question": "What is the Elevator of the Elected Elevated on September 21, 1179?" }
### QUESTION Who is the Elector with a Cardinalatial title of Priest of S. Sabina and Archbishop of Reims? ### CONTEXT CREATE TABLE table_name_91 (elector VARCHAR, cardinalatial_title VARCHAR) ### ANSWER SELECT elector FROM table_name_91 WHERE cardinalatial_title = "priest of s. sabina and archbishop of reims"
{ "answer": "SELECT elector FROM table_name_91 WHERE cardinalatial_title = \"priest of s. sabina and archbishop of reims\"", "context": "CREATE TABLE table_name_91 (elector VARCHAR, cardinalatial_title VARCHAR)", "question": "Who is the Elector with a Cardinalatial title of Priest of S. Sabina and Archbishop of Reims?" }
### QUESTION Which Winning Team has the Fastest Lap of brendon hartley, and a Pole Position of oliver turvey, and a Circuit of spa-francorchamps, and the Winning Driver of brendon hartley? ### CONTEXT CREATE TABLE table_name_75 (winning_team VARCHAR, winning_driver VARCHAR, circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### ANSWER SELECT winning_team FROM table_name_75 WHERE fastest_lap = "brendon hartley" AND pole_position = "oliver turvey" AND circuit = "spa-francorchamps" AND winning_driver = "brendon hartley"
{ "answer": "SELECT winning_team FROM table_name_75 WHERE fastest_lap = \"brendon hartley\" AND pole_position = \"oliver turvey\" AND circuit = \"spa-francorchamps\" AND winning_driver = \"brendon hartley\"", "context": "CREATE TABLE table_name_75 (winning_team VARCHAR, winning_driver VARCHAR, circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)", "question": "Which Winning Team has the Fastest Lap of brendon hartley, and a Pole Position of oliver turvey, and a Circuit of spa-francorchamps, and the Winning Driver of brendon hartley?" }
### QUESTION Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march? ### CONTEXT CREATE TABLE table_name_93 (circuit VARCHAR, date VARCHAR, winning_team VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT circuit FROM table_name_93 WHERE winning_team = "carlin motorsport" AND winning_driver = "oliver turvey" AND date = "24 march"
{ "answer": "SELECT circuit FROM table_name_93 WHERE winning_team = \"carlin motorsport\" AND winning_driver = \"oliver turvey\" AND date = \"24 march\"", "context": "CREATE TABLE table_name_93 (circuit VARCHAR, date VARCHAR, winning_team VARCHAR, winning_driver VARCHAR)", "question": "Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?" }
### QUESTION Which Date had a City/Location of vancouver, british columbia? ### CONTEXT CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR) ### ANSWER SELECT date FROM table_name_65 WHERE city_location = "vancouver, british columbia"
{ "answer": "SELECT date FROM table_name_65 WHERE city_location = \"vancouver, british columbia\"", "context": "CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR)", "question": "Which Date had a City/Location of vancouver, british columbia?" }
### QUESTION What is the record of the game with a game number greater than 7 at boston garden with the providence steam rollers as the opponent? ### CONTEXT CREATE TABLE table_name_46 (record VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR) ### ANSWER SELECT record FROM table_name_46 WHERE game > 7 AND location = "boston garden" AND opponent = "providence steam rollers"
{ "answer": "SELECT record FROM table_name_46 WHERE game > 7 AND location = \"boston garden\" AND opponent = \"providence steam rollers\"", "context": "CREATE TABLE table_name_46 (record VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR)", "question": "What is the record of the game with a game number greater than 7 at boston garden with the providence steam rollers as the opponent?" }
### QUESTION For the ship that was a brig and located in the English Channel, what was the disposition of ship? ### CONTEXT CREATE TABLE table_name_57 (disposition_of_ship VARCHAR, ship_type VARCHAR, location VARCHAR) ### ANSWER SELECT disposition_of_ship FROM table_name_57 WHERE ship_type = "brig" AND location = "english channel"
{ "answer": "SELECT disposition_of_ship FROM table_name_57 WHERE ship_type = \"brig\" AND location = \"english channel\"", "context": "CREATE TABLE table_name_57 (disposition_of_ship VARCHAR, ship_type VARCHAR, location VARCHAR)", "question": "For the ship that was a brig and located in the English Channel, what was the disposition of ship?" }
### QUESTION How many places have bianka panova as the name, with clubs less than 10? ### CONTEXT CREATE TABLE table_name_84 (place VARCHAR, name VARCHAR, clubs VARCHAR) ### ANSWER SELECT COUNT(place) FROM table_name_84 WHERE name = "bianka panova" AND clubs < 10
{ "answer": "SELECT COUNT(place) FROM table_name_84 WHERE name = \"bianka panova\" AND clubs < 10", "context": "CREATE TABLE table_name_84 (place VARCHAR, name VARCHAR, clubs VARCHAR)", "question": "How many places have bianka panova as the name, with clubs less than 10?" }
### QUESTION What is the Date, when Partnering is "Francesca Lubiani", and when Opponent in Final is "Yuliya Beygelzimer / Jennifer Hopkins"? ### CONTEXT CREATE TABLE table_name_10 (date VARCHAR, partnering VARCHAR, opponent_in_final VARCHAR) ### ANSWER SELECT date FROM table_name_10 WHERE partnering = "francesca lubiani" AND opponent_in_final = "yuliya beygelzimer / jennifer hopkins"
{ "answer": "SELECT date FROM table_name_10 WHERE partnering = \"francesca lubiani\" AND opponent_in_final = \"yuliya beygelzimer / jennifer hopkins\"", "context": "CREATE TABLE table_name_10 (date VARCHAR, partnering VARCHAR, opponent_in_final VARCHAR)", "question": "What is the Date, when Partnering is \"Francesca Lubiani\", and when Opponent in Final is \"Yuliya Beygelzimer / Jennifer Hopkins\"?" }
### QUESTION What is Score, when Outcome is "winner", when Partnering is "Nicole Sewell", and when Opponent in Final is "Victoria Davies / Kate Warne-Holland"? ### CONTEXT CREATE TABLE table_name_50 (score VARCHAR, opponent_in_final VARCHAR, outcome VARCHAR, partnering VARCHAR) ### ANSWER SELECT score FROM table_name_50 WHERE outcome = "winner" AND partnering = "nicole sewell" AND opponent_in_final = "victoria davies / kate warne-holland"
{ "answer": "SELECT score FROM table_name_50 WHERE outcome = \"winner\" AND partnering = \"nicole sewell\" AND opponent_in_final = \"victoria davies / kate warne-holland\"", "context": "CREATE TABLE table_name_50 (score VARCHAR, opponent_in_final VARCHAR, outcome VARCHAR, partnering VARCHAR)", "question": "What is Score, when Outcome is \"winner\", when Partnering is \"Nicole Sewell\", and when Opponent in Final is \"Victoria Davies / Kate Warne-Holland\"?" }
### QUESTION WHAT IS THE ROUND FOR ZACH BOYCHUK? ### CONTEXT CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR) ### ANSWER SELECT COUNT(round) FROM table_name_6 WHERE player = "zach boychuk"
{ "answer": "SELECT COUNT(round) FROM table_name_6 WHERE player = \"zach boychuk\"", "context": "CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR)", "question": "WHAT IS THE ROUND FOR ZACH BOYCHUK?" }
### QUESTION How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995? ### CONTEXT CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR) ### ANSWER SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND year_to < 1995
{ "answer": "SELECT COUNT(engine) FROM table_name_82 WHERE model = \"sl600\" AND year_from = 1994 AND year_to < 1995", "context": "CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR)", "question": "How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?" }
### QUESTION Which date did the oakland raiders play as the opponent when the Bills first downs were under 28? ### CONTEXT CREATE TABLE table_name_76 (date VARCHAR, bills_first_downs VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_76 WHERE bills_first_downs < 28 AND opponent = "oakland raiders"
{ "answer": "SELECT date FROM table_name_76 WHERE bills_first_downs < 28 AND opponent = \"oakland raiders\"", "context": "CREATE TABLE table_name_76 (date VARCHAR, bills_first_downs VARCHAR, opponent VARCHAR)", "question": "Which date did the oakland raiders play as the opponent when the Bills first downs were under 28?" }
### QUESTION What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36? ### CONTEXT CREATE TABLE table_name_35 (matches INTEGER, average VARCHAR, best_bowling VARCHAR, wickets VARCHAR, team VARCHAR) ### ANSWER SELECT MAX(matches) FROM table_name_35 WHERE wickets > 13 AND team = "australia" AND best_bowling = "5/36" AND average < 23.33
{ "answer": "SELECT MAX(matches) FROM table_name_35 WHERE wickets > 13 AND team = \"australia\" AND best_bowling = \"5/36\" AND average < 23.33", "context": "CREATE TABLE table_name_35 (matches INTEGER, average VARCHAR, best_bowling VARCHAR, wickets VARCHAR, team VARCHAR)", "question": "What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36?" }
### QUESTION What is the North American release date of the remake with a European release date on 2013-03-20? ### CONTEXT CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR) ### ANSWER SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = "2013-03-20"
{ "answer": "SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = \"2013-03-20\"", "context": "CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR)", "question": "What is the North American release date of the remake with a European release date on 2013-03-20?" }
### QUESTION What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret? ### CONTEXT CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT circuit FROM table_name_20 WHERE winning_constructor = "bugatti" AND winning_driver = "edward bret"
{ "answer": "SELECT circuit FROM table_name_20 WHERE winning_constructor = \"bugatti\" AND winning_driver = \"edward bret\"", "context": "CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)", "question": "What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret?" }
### QUESTION What is the total number of Draw(s), when Televotes is greater than 1761, when Song is "Ils Sont Là", and when Place is less than 2? ### CONTEXT CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR) ### ANSWER SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = "ils sont là" AND place < 2
{ "answer": "SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = \"ils sont là\" AND place < 2", "context": "CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR)", "question": "What is the total number of Draw(s), when Televotes is greater than 1761, when Song is \"Ils Sont Là\", and when Place is less than 2?" }
### QUESTION What is the total for 1984 for the team with 100 points total and more than 3 seasons? ### CONTEXT CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR) ### ANSWER SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3
{ "answer": "SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3", "context": "CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR)", "question": "What is the total for 1984 for the team with 100 points total and more than 3 seasons?" }
### QUESTION What is the weight of the player from club panionios g.c. and was born on 1975-05-21? ### CONTEXT CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR) ### ANSWER SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21"
{ "answer": "SELECT weight FROM table_name_70 WHERE club = \"panionios g.c.\" AND date_of_birth = \"1975-05-21\"", "context": "CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)", "question": "What is the weight of the player from club panionios g.c. and was born on 1975-05-21?" }
### QUESTION Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336? ### CONTEXT CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR) ### ANSWER SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = "lager 1" AND slope_length < 336
{ "answer": "SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = \"lager 1\" AND slope_length < 336", "context": "CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR)", "question": "Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336?" }
### QUESTION Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1? ### CONTEXT CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR) ### ANSWER SELECT slope_length FROM table_name_43 WHERE type = "surface lift" AND elevation_groundstation < 1974 AND construction_year_s_ = "1971" AND name_or_route = "alpmatten 1"
{ "answer": "SELECT slope_length FROM table_name_43 WHERE type = \"surface lift\" AND elevation_groundstation < 1974 AND construction_year_s_ = \"1971\" AND name_or_route = \"alpmatten 1\"", "context": "CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR)", "question": "Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1?" }
### QUESTION What Elimination Move is listed against Wrestler Henry, Eliminated by Batista? ### CONTEXT CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR) ### ANSWER SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry"
{ "answer": "SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = \"batista\" AND wrestler = \"henry\"", "context": "CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)", "question": "What Elimination Move is listed against Wrestler Henry, Eliminated by Batista?" }
### QUESTION What date was Millwall the home team? ### CONTEXT CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR) ### ANSWER SELECT date FROM table_name_29 WHERE home_team = "millwall"
{ "answer": "SELECT date FROM table_name_29 WHERE home_team = \"millwall\"", "context": "CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR)", "question": "What date was Millwall the home team?" }
### QUESTION How many total wins have 3 as the Top-35 and less than 5 cuts made? ### CONTEXT CREATE TABLE table_name_40 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR) ### ANSWER SELECT SUM(wins) FROM table_name_40 WHERE top_25 = 3 AND cuts_made < 5
{ "answer": "SELECT SUM(wins) FROM table_name_40 WHERE top_25 = 3 AND cuts_made < 5", "context": "CREATE TABLE table_name_40 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)", "question": "How many total wins have 3 as the Top-35 and less than 5 cuts made?" }
### QUESTION Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984? ### CONTEXT CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR) ### ANSWER SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984
{ "answer": "SELECT AVG(number) FROM table_name_90 WHERE name = \"cooper, c. kenneth\" AND year_end > 1984", "context": "CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR)", "question": "Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?" }
### QUESTION What is the score of the game against away team exeter city on 10 jan 1990? ### CONTEXT CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### ANSWER SELECT score FROM table_name_70 WHERE date = "10 jan 1990" AND away_team = "exeter city"
{ "answer": "SELECT score FROM table_name_70 WHERE date = \"10 jan 1990\" AND away_team = \"exeter city\"", "context": "CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR)", "question": "What is the score of the game against away team exeter city on 10 jan 1990?" }
### QUESTION Who is the player in t8 place with a 75-71=146 score? ### CONTEXT CREATE TABLE table_name_68 (player VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_68 WHERE place = "t8" AND score = 75 - 71 = 146
{ "answer": "SELECT player FROM table_name_68 WHERE place = \"t8\" AND score = 75 - 71 = 146", "context": "CREATE TABLE table_name_68 (player VARCHAR, place VARCHAR, score VARCHAR)", "question": "Who is the player in t8 place with a 75-71=146 score?" }
### QUESTION WHAT YEAR HAS A BRONZE OF VALENTIN NOVIKOV? ### CONTEXT CREATE TABLE table_name_88 (year INTEGER, bronze VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_88 WHERE bronze = "valentin novikov"
{ "answer": "SELECT AVG(year) FROM table_name_88 WHERE bronze = \"valentin novikov\"", "context": "CREATE TABLE table_name_88 (year INTEGER, bronze VARCHAR)", "question": "WHAT YEAR HAS A BRONZE OF VALENTIN NOVIKOV?" }
### QUESTION What is the round of the pf position player from 1996 and the college/high school/club mississippi state? ### CONTEXT CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR) ### ANSWER SELECT round FROM table_name_37 WHERE position = "pf" AND year = 1996 AND college_high_school_club = "mississippi state"
{ "answer": "SELECT round FROM table_name_37 WHERE position = \"pf\" AND year = 1996 AND college_high_school_club = \"mississippi state\"", "context": "CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)", "question": "What is the round of the pf position player from 1996 and the college/high school/club mississippi state?" }
### QUESTION What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird? ### CONTEXT CREATE TABLE table_name_88 (mintage VARCHAR, weight VARCHAR, theme VARCHAR) ### ANSWER SELECT COUNT(mintage) FROM table_name_88 WHERE weight = "12.61 g" AND theme = "ruby-throated hummingbird"
{ "answer": "SELECT COUNT(mintage) FROM table_name_88 WHERE weight = \"12.61 g\" AND theme = \"ruby-throated hummingbird\"", "context": "CREATE TABLE table_name_88 (mintage VARCHAR, weight VARCHAR, theme VARCHAR)", "question": "What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird?" }
### QUESTION Which Score has a Visitor of montreal canadiens, and Points of 5? ### CONTEXT CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR) ### ANSWER SELECT score FROM table_name_93 WHERE visitor = "montreal canadiens" AND points = 5
{ "answer": "SELECT score FROM table_name_93 WHERE visitor = \"montreal canadiens\" AND points = 5", "context": "CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR)", "question": "Which Score has a Visitor of montreal canadiens, and Points of 5?" }
### QUESTION What was the winning team on 11 July? ### CONTEXT CREATE TABLE table_name_58 (winning_team VARCHAR, date VARCHAR) ### ANSWER SELECT winning_team FROM table_name_58 WHERE date = "11 july"
{ "answer": "SELECT winning_team FROM table_name_58 WHERE date = \"11 july\"", "context": "CREATE TABLE table_name_58 (winning_team VARCHAR, date VARCHAR)", "question": "What was the winning team on 11 July?" }
### QUESTION Who is the winning driver of the race on 2 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? ### CONTEXT CREATE TABLE table_name_15 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR) ### ANSWER SELECT winning_driver FROM table_name_15 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND date = "2 june"
{ "answer": "SELECT winning_driver FROM table_name_15 WHERE winning_team = \"a.z.k./roc-compétition a.z.k./roc-compétition\" AND date = \"2 june\"", "context": "CREATE TABLE table_name_15 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)", "question": "Who is the winning driver of the race on 2 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?" }
### QUESTION Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price? ### CONTEXT CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR) ### ANSWER SELECT date FROM table_name_99 WHERE home = "montreal canadiens" AND points > 9 AND decision = "price"
{ "answer": "SELECT date FROM table_name_99 WHERE home = \"montreal canadiens\" AND points > 9 AND decision = \"price\"", "context": "CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR)", "question": "Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price?" }
### QUESTION What is the round on 30 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? ### CONTEXT CREATE TABLE table_name_7 (round VARCHAR, winning_team VARCHAR, date VARCHAR) ### ANSWER SELECT round FROM table_name_7 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND date = "30 june"
{ "answer": "SELECT round FROM table_name_7 WHERE winning_team = \"a.z.k./roc-compétition a.z.k./roc-compétition\" AND date = \"30 june\"", "context": "CREATE TABLE table_name_7 (round VARCHAR, winning_team VARCHAR, date VARCHAR)", "question": "What is the round on 30 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?" }
### QUESTION What is the date of the zolder circuit, which had a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? ### CONTEXT CREATE TABLE table_name_53 (date VARCHAR, winning_team VARCHAR, circuit VARCHAR) ### ANSWER SELECT date FROM table_name_53 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND circuit = "zolder"
{ "answer": "SELECT date FROM table_name_53 WHERE winning_team = \"a.z.k./roc-compétition a.z.k./roc-compétition\" AND circuit = \"zolder\"", "context": "CREATE TABLE table_name_53 (date VARCHAR, winning_team VARCHAR, circuit VARCHAR)", "question": "What is the date of the zolder circuit, which had a.z.k./roc-compétition a.z.k./roc-compétition as the winning team?" }
### QUESTION Which Result F-A has Opponents of rosenborg? ### CONTEXT CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR) ### ANSWER SELECT result_f___a FROM table_name_8 WHERE opponents = "rosenborg"
{ "answer": "SELECT result_f___a FROM table_name_8 WHERE opponents = \"rosenborg\"", "context": "CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR)", "question": "Which Result F-A has Opponents of rosenborg?" }
### QUESTION What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36? ### CONTEXT CREATE TABLE table_name_67 (magnitude VARCHAR, time__utc_ VARCHAR, epicenter VARCHAR, intensity VARCHAR) ### ANSWER SELECT magnitude FROM table_name_67 WHERE epicenter = "vrancea county" AND intensity = "unknown" AND time__utc_ = "06:36"
{ "answer": "SELECT magnitude FROM table_name_67 WHERE epicenter = \"vrancea county\" AND intensity = \"unknown\" AND time__utc_ = \"06:36\"", "context": "CREATE TABLE table_name_67 (magnitude VARCHAR, time__utc_ VARCHAR, epicenter VARCHAR, intensity VARCHAR)", "question": "What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36?" }
### QUESTION What's the category for the tween academy: class of 2012 nomination? ### CONTEXT CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR) ### ANSWER SELECT category FROM table_name_86 WHERE nominated_for = "tween academy: class of 2012"
{ "answer": "SELECT category FROM table_name_86 WHERE nominated_for = \"tween academy: class of 2012\"", "context": "CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR)", "question": "What's the category for the tween academy: class of 2012 nomination?" }
### QUESTION What is the record of the game with 35 points and pittsburgh as the home team? ### CONTEXT CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR) ### ANSWER SELECT record FROM table_name_77 WHERE home = "pittsburgh" AND points = 35
{ "answer": "SELECT record FROM table_name_77 WHERE home = \"pittsburgh\" AND points = 35", "context": "CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR)", "question": "What is the record of the game with 35 points and pittsburgh as the home team?" }
### QUESTION Which Democratic incumbent was first elected in 1998? ### CONTEXT CREATE TABLE table_name_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) ### ANSWER SELECT incumbent FROM table_name_18 WHERE party = "democratic" AND first_elected = 1998
{ "answer": "SELECT incumbent FROM table_name_18 WHERE party = \"democratic\" AND first_elected = 1998", "context": "CREATE TABLE table_name_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)", "question": "Which Democratic incumbent was first elected in 1998?" }
### QUESTION Which district has a Democratic incumbent that was first elected before 1996? ### CONTEXT CREATE TABLE table_name_62 (district VARCHAR, party VARCHAR, first_elected VARCHAR) ### ANSWER SELECT district FROM table_name_62 WHERE party = "democratic" AND first_elected < 1996
{ "answer": "SELECT district FROM table_name_62 WHERE party = \"democratic\" AND first_elected < 1996", "context": "CREATE TABLE table_name_62 (district VARCHAR, party VARCHAR, first_elected VARCHAR)", "question": "Which district has a Democratic incumbent that was first elected before 1996?" }
### QUESTION Who is the home team when the san francisco 49ers are visiting with a result of 42-14? ### CONTEXT CREATE TABLE table_name_92 (home_team VARCHAR, visiting_team VARCHAR, result VARCHAR) ### ANSWER SELECT home_team FROM table_name_92 WHERE visiting_team = "san francisco 49ers" AND result = "42-14"
{ "answer": "SELECT home_team FROM table_name_92 WHERE visiting_team = \"san francisco 49ers\" AND result = \"42-14\"", "context": "CREATE TABLE table_name_92 (home_team VARCHAR, visiting_team VARCHAR, result VARCHAR)", "question": "Who is the home team when the san francisco 49ers are visiting with a result of 42-14?" }
### QUESTION What did United States place when the player was Raymond Floyd? ### CONTEXT CREATE TABLE table_name_84 (place VARCHAR, country VARCHAR, player VARCHAR) ### ANSWER SELECT place FROM table_name_84 WHERE country = "united states" AND player = "raymond floyd"
{ "answer": "SELECT place FROM table_name_84 WHERE country = \"united states\" AND player = \"raymond floyd\"", "context": "CREATE TABLE table_name_84 (place VARCHAR, country VARCHAR, player VARCHAR)", "question": "What did United States place when the player was Raymond Floyd?" }
### QUESTION In the tie where Southampton was the away team, who was the home team? ### CONTEXT CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR) ### ANSWER SELECT home_team FROM table_name_97 WHERE away_team = "southampton"
{ "answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"southampton\"", "context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)", "question": "In the tie where Southampton was the away team, who was the home team?" }
### QUESTION What was the result in 2000? ### CONTEXT CREATE TABLE table_name_23 (results VARCHAR, year VARCHAR) ### ANSWER SELECT results FROM table_name_23 WHERE year = 2000
{ "answer": "SELECT results FROM table_name_23 WHERE year = 2000", "context": "CREATE TABLE table_name_23 (results VARCHAR, year VARCHAR)", "question": "What was the result in 2000?" }
### QUESTION What is the city in Alabama that opened in 1996? ### CONTEXT CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR) ### ANSWER SELECT city FROM table_name_89 WHERE year_opened = "1996" AND state = "alabama"
{ "answer": "SELECT city FROM table_name_89 WHERE year_opened = \"1996\" AND state = \"alabama\"", "context": "CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR)", "question": "What is the city in Alabama that opened in 1996?" }
### QUESTION What was the year opened for North Carolina with a smaller than 21,500 capacity? ### CONTEXT CREATE TABLE table_name_50 (year_opened VARCHAR, state VARCHAR, capacity VARCHAR) ### ANSWER SELECT year_opened FROM table_name_50 WHERE state = "north carolina" AND capacity < 21 OFFSET 500
{ "answer": "SELECT year_opened FROM table_name_50 WHERE state = \"north carolina\" AND capacity < 21 OFFSET 500", "context": "CREATE TABLE table_name_50 (year_opened VARCHAR, state VARCHAR, capacity VARCHAR)", "question": "What was the year opened for North Carolina with a smaller than 21,500 capacity?" }
### QUESTION In the match against Marcus Aurélio with a method of decision (unanimous), what was the results? ### CONTEXT CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR) ### ANSWER SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio"
{ "answer": "SELECT res FROM table_name_6 WHERE method = \"decision (unanimous)\" AND opponent = \"marcus aurélio\"", "context": "CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR)", "question": "In the match against Marcus Aurélio with a method of decision (unanimous), what was the results?" }
### QUESTION Who had the most rebounds in the game against Chicago? ### CONTEXT CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR) ### ANSWER SELECT high_rebounds FROM table_name_52 WHERE team = "chicago"
{ "answer": "SELECT high_rebounds FROM table_name_52 WHERE team = \"chicago\"", "context": "CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR)", "question": "Who had the most rebounds in the game against Chicago?" }
### QUESTION What is the Tie number for the match where Dartford was the hone team? ### CONTEXT CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR) ### ANSWER SELECT tie_no FROM table_name_31 WHERE home_team = "dartford"
{ "answer": "SELECT tie_no FROM table_name_31 WHERE home_team = \"dartford\"", "context": "CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR)", "question": "What is the Tie number for the match where Dartford was the hone team?" }
### QUESTION What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"? ### CONTEXT CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR) ### ANSWER SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley"
{ "answer": "SELECT player FROM table_name_56 WHERE class = \"senior\" AND position = \"shooting guard\" AND school = \"bradley\"", "context": "CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR)", "question": "What is Player, when Class is \"senior\", when Position is \"shooting guard\", and when School is \"Bradley\"?" }
### QUESTION What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)? ### CONTEXT CREATE TABLE table_name_53 (record VARCHAR, arena VARCHAR, loss VARCHAR) ### ANSWER SELECT record FROM table_name_53 WHERE arena = "arrowhead pond of anaheim" AND loss = "bryzgalov (10–11–1)"
{ "answer": "SELECT record FROM table_name_53 WHERE arena = \"arrowhead pond of anaheim\" AND loss = \"bryzgalov (10–11–1)\"", "context": "CREATE TABLE table_name_53 (record VARCHAR, arena VARCHAR, loss VARCHAR)", "question": "What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)?" }
### QUESTION What is the finishing time with a 2/1q finish on the Meadowlands track? ### CONTEXT CREATE TABLE table_name_10 (fin_time VARCHAR, finish VARCHAR, track VARCHAR) ### ANSWER SELECT fin_time FROM table_name_10 WHERE finish = "2/1q" AND track = "the meadowlands"
{ "answer": "SELECT fin_time FROM table_name_10 WHERE finish = \"2/1q\" AND track = \"the meadowlands\"", "context": "CREATE TABLE table_name_10 (fin_time VARCHAR, finish VARCHAR, track VARCHAR)", "question": "What is the finishing time with a 2/1q finish on the Meadowlands track?" }
### QUESTION On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played? ### CONTEXT CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR) ### ANSWER SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3"
{ "answer": "SELECT surface FROM table_name_30 WHERE outcome = \"runner-up\" AND score = \"6–4, 6–3\"", "context": "CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR)", "question": "On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played?" }
### QUESTION What team has a location and attendance at the Seattle Center Coliseum 12,591? ### CONTEXT CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT team FROM table_name_22 WHERE location_attendance = "seattle center coliseum 12,591"
{ "answer": "SELECT team FROM table_name_22 WHERE location_attendance = \"seattle center coliseum 12,591\"", "context": "CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)", "question": "What team has a location and attendance at the Seattle Center Coliseum 12,591?" }
### QUESTION How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored? ### CONTEXT CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR) ### ANSWER SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND lost > 2 AND goals_scored > 22
{ "answer": "SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND lost > 2 AND goals_scored > 22", "context": "CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR)", "question": "How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored?" }
### QUESTION What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)? ### CONTEXT CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR) ### ANSWER SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = "351ft•lbf (476 j)"
{ "answer": "SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = \"351ft•lbf (476 j)\"", "context": "CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR)", "question": "What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?" }
### QUESTION WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22? ### CONTEXT CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR) ### ANSWER SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
{ "answer": "SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = \"生\" AND frequency < 22", "context": "CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)", "question": "WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?" }
### QUESTION What is the highest enrollment for rochester community school? ### CONTEXT CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR) ### ANSWER SELECT MAX(enrollment) FROM table_name_66 WHERE school = "rochester community"
{ "answer": "SELECT MAX(enrollment) FROM table_name_66 WHERE school = \"rochester community\"", "context": "CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR)", "question": "What is the highest enrollment for rochester community school?" }
### QUESTION What is the Theme Song of the Yukan Club? ### CONTEXT CREATE TABLE table_name_64 (theme_song_s_ VARCHAR, romaji_title VARCHAR) ### ANSWER SELECT theme_song_s_ FROM table_name_64 WHERE romaji_title = "yukan club"
{ "answer": "SELECT theme_song_s_ FROM table_name_64 WHERE romaji_title = \"yukan club\"", "context": "CREATE TABLE table_name_64 (theme_song_s_ VARCHAR, romaji_title VARCHAR)", "question": "What is the Theme Song of the Yukan Club?" }
### QUESTION Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3? ### CONTEXT CREATE TABLE table_name_19 (wins VARCHAR, starts VARCHAR, top_5 VARCHAR) ### ANSWER SELECT wins FROM table_name_19 WHERE starts > 1 AND top_5 = 3
{ "answer": "SELECT wins FROM table_name_19 WHERE starts > 1 AND top_5 = 3", "context": "CREATE TABLE table_name_19 (wins VARCHAR, starts VARCHAR, top_5 VARCHAR)", "question": "Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3?" }
### QUESTION what is the highest podiums when the stage wins is 91 and the points is less than 140? ### CONTEXT CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR) ### ANSWER SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140
{ "answer": "SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140", "context": "CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR)", "question": "what is the highest podiums when the stage wins is 91 and the points is less than 140?" }
### QUESTION What is the highest Money ($), when Top Par is E, and when Player is Ernie Els? ### CONTEXT CREATE TABLE table_name_35 (money___ INTEGER, to_par VARCHAR, player VARCHAR) ### ANSWER SELECT MAX(money___) AS $__ FROM table_name_35 WHERE to_par = "e" AND player = "ernie els"
{ "answer": "SELECT MAX(money___) AS $__ FROM table_name_35 WHERE to_par = \"e\" AND player = \"ernie els\"", "context": "CREATE TABLE table_name_35 (money___ INTEGER, to_par VARCHAR, player VARCHAR)", "question": "What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?" }
### QUESTION What is Beohari's reserved for (SC/ST/None)? ### CONTEXT CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### ANSWER SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = "beohari"
{ "answer": "SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = \"beohari\"", "context": "CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)", "question": "What is Beohari's reserved for (SC/ST/None)?" }
### QUESTION What was the round for 29 January 1949, when the against was 1? ### CONTEXT CREATE TABLE table_name_52 (round VARCHAR, against VARCHAR, date VARCHAR) ### ANSWER SELECT round FROM table_name_52 WHERE against = 1 AND date = "29 january 1949"
{ "answer": "SELECT round FROM table_name_52 WHERE against = 1 AND date = \"29 january 1949\"", "context": "CREATE TABLE table_name_52 (round VARCHAR, against VARCHAR, date VARCHAR)", "question": "What was the round for 29 January 1949, when the against was 1?" }
### QUESTION What is the total prominence number in m of ethiopia, which has a col in m of 1728 and an elevation less than 3,358? ### CONTEXT CREATE TABLE table_name_27 (prominence__m_ VARCHAR, elevation__m_ VARCHAR, country VARCHAR, col__m_ VARCHAR) ### ANSWER SELECT COUNT(prominence__m_) FROM table_name_27 WHERE country = "ethiopia" AND col__m_ = 1728 AND elevation__m_ < 3 OFFSET 358
{ "answer": "SELECT COUNT(prominence__m_) FROM table_name_27 WHERE country = \"ethiopia\" AND col__m_ = 1728 AND elevation__m_ < 3 OFFSET 358", "context": "CREATE TABLE table_name_27 (prominence__m_ VARCHAR, elevation__m_ VARCHAR, country VARCHAR, col__m_ VARCHAR)", "question": "What is the total prominence number in m of ethiopia, which has a col in m of 1728 and an elevation less than 3,358?" }
### QUESTION How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7? ### CONTEXT ### ANSWER SELECT COUNT(*) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7
{ "answer": "SELECT COUNT(*) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7", "context": "", "question": "How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7?" }
### QUESTION What was the result when they played at Michigan State? ### CONTEXT CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR) ### ANSWER SELECT result FROM table_name_14 WHERE opponent_number = "at michigan state"
{ "answer": "SELECT result FROM table_name_14 WHERE opponent_number = \"at michigan state\"", "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)", "question": "What was the result when they played at Michigan State?" }
### QUESTION Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240? ### CONTEXT CREATE TABLE table_name_12 (big__ INTEGER, total VARCHAR, micro__10ha_ VARCHAR, department VARCHAR) ### ANSWER SELECT MAX(big__) > 500 AS ha_ FROM table_name_12 WHERE micro__10ha_ > 940 AND department = "potosí" AND total < 16 OFFSET 240
{ "answer": "SELECT MAX(big__) > 500 AS ha_ FROM table_name_12 WHERE micro__10ha_ > 940 AND department = \"potosí\" AND total < 16 OFFSET 240", "context": "CREATE TABLE table_name_12 (big__ INTEGER, total VARCHAR, micro__10ha_ VARCHAR, department VARCHAR)", "question": "Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?" }
### QUESTION What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time? ### CONTEXT CREATE TABLE table_name_93 (score VARCHAR, time VARCHAR, venue VARCHAR) ### ANSWER SELECT score FROM table_name_93 WHERE time = "14:30" AND venue = "happy valley recreation ground pitch #2"
{ "answer": "SELECT score FROM table_name_93 WHERE time = \"14:30\" AND venue = \"happy valley recreation ground pitch #2\"", "context": "CREATE TABLE table_name_93 (score VARCHAR, time VARCHAR, venue VARCHAR)", "question": "What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time?" }
### QUESTION What is the venue of the match with a 14:30 time and sun source as the away team? ### CONTEXT CREATE TABLE table_name_67 (venue VARCHAR, time VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_67 WHERE time = "14:30" AND away_team = "sun source"
{ "answer": "SELECT venue FROM table_name_67 WHERE time = \"14:30\" AND away_team = \"sun source\"", "context": "CREATE TABLE table_name_67 (venue VARCHAR, time VARCHAR, away_team VARCHAR)", "question": "What is the venue of the match with a 14:30 time and sun source as the away team?" }
### QUESTION What is the name of the person whose country is West Indies. ### CONTEXT CREATE TABLE table_name_53 (name VARCHAR, country VARCHAR) ### ANSWER SELECT name FROM table_name_53 WHERE country = "west indies"
{ "answer": "SELECT name FROM table_name_53 WHERE country = \"west indies\"", "context": "CREATE TABLE table_name_53 (name VARCHAR, country VARCHAR)", "question": "What is the name of the person whose country is West Indies." }
### QUESTION Who was the winner after 2011? ### CONTEXT CREATE TABLE table_name_81 (winner VARCHAR, year INTEGER) ### ANSWER SELECT winner FROM table_name_81 WHERE year > 2011
{ "answer": "SELECT winner FROM table_name_81 WHERE year > 2011", "context": "CREATE TABLE table_name_81 (winner VARCHAR, year INTEGER)", "question": "Who was the winner after 2011?" }
### QUESTION The match that went 1 round, and had a method of submission (rear-naked choke) had what record? ### CONTEXT CREATE TABLE table_name_43 (record VARCHAR, round VARCHAR, method VARCHAR) ### ANSWER SELECT record FROM table_name_43 WHERE round = 1 AND method = "submission (rear-naked choke)"
{ "answer": "SELECT record FROM table_name_43 WHERE round = 1 AND method = \"submission (rear-naked choke)\"", "context": "CREATE TABLE table_name_43 (record VARCHAR, round VARCHAR, method VARCHAR)", "question": "The match that went 1 round, and had a method of submission (rear-naked choke) had what record?" }
### QUESTION Which money has a Country of united states, and a Place of t6? ### CONTEXT CREATE TABLE table_name_23 (money___ INTEGER, country VARCHAR, place VARCHAR) ### ANSWER SELECT AVG(money___) AS $__ FROM table_name_23 WHERE country = "united states" AND place = "t6"
{ "answer": "SELECT AVG(money___) AS $__ FROM table_name_23 WHERE country = \"united states\" AND place = \"t6\"", "context": "CREATE TABLE table_name_23 (money___ INTEGER, country VARCHAR, place VARCHAR)", "question": "Which money has a Country of united states, and a Place of t6?" }
### QUESTION What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284? ### CONTEXT CREATE TABLE table_name_69 (poverty__2009__hpi_1__percentage VARCHAR, gdp__ppp___2012__us$_per_capita VARCHAR) ### ANSWER SELECT COUNT(poverty__2009__hpi_1__percentage) FROM table_name_69 WHERE gdp__ppp___2012__us$_per_capita = "11,284"
{ "answer": "SELECT COUNT(poverty__2009__hpi_1__percentage) FROM table_name_69 WHERE gdp__ppp___2012__us$_per_capita = \"11,284\"", "context": "CREATE TABLE table_name_69 (poverty__2009__hpi_1__percentage VARCHAR, gdp__ppp___2012__us$_per_capita VARCHAR)", "question": "What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284?" }
### QUESTION What tournament has a 2008 value of A, q1 in 2005, and 1r in 2004? ### CONTEXT CREATE TABLE table_name_31 (tournament VARCHAR) ### ANSWER SELECT tournament FROM table_name_31 WHERE 2008 = "a" AND 2005 = "q1" AND 2004 = "1r"
{ "answer": "SELECT tournament FROM table_name_31 WHERE 2008 = \"a\" AND 2005 = \"q1\" AND 2004 = \"1r\"", "context": "CREATE TABLE table_name_31 (tournament VARCHAR)", "question": "What tournament has a 2008 value of A, q1 in 2005, and 1r in 2004?" }
### QUESTION How many fastest laps for the nation with 32 (30) entries and starts and fewer than 2 podiums? ### CONTEXT CREATE TABLE table_name_74 (fastest_laps INTEGER, race_entries__starts_ VARCHAR, podiums VARCHAR) ### ANSWER SELECT MIN(fastest_laps) FROM table_name_74 WHERE race_entries__starts_ = "32 (30)" AND podiums < 2
{ "answer": "SELECT MIN(fastest_laps) FROM table_name_74 WHERE race_entries__starts_ = \"32 (30)\" AND podiums < 2", "context": "CREATE TABLE table_name_74 (fastest_laps INTEGER, race_entries__starts_ VARCHAR, podiums VARCHAR)", "question": "How many fastest laps for the nation with 32 (30) entries and starts and fewer than 2 podiums?" }
### QUESTION Which player from United States is in place of t6? ### CONTEXT CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR) ### ANSWER SELECT player FROM table_name_51 WHERE country = "united states" AND place = "t6"
{ "answer": "SELECT player FROM table_name_51 WHERE country = \"united states\" AND place = \"t6\"", "context": "CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR)", "question": "Which player from United States is in place of t6?" }
### QUESTION What was the earliest week when the New Orleans Saints were the opponents? ### CONTEXT CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR) ### ANSWER SELECT MIN(week) FROM table_name_31 WHERE opponent = "new orleans saints"
{ "answer": "SELECT MIN(week) FROM table_name_31 WHERE opponent = \"new orleans saints\"", "context": "CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)", "question": "What was the earliest week when the New Orleans Saints were the opponents?" }
### QUESTION What team is from the United States and plays a guard position for the Grizzlies in 2012? ### CONTEXT CREATE TABLE table_name_70 (school_club_team VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR) ### ANSWER SELECT school_club_team FROM table_name_70 WHERE nationality = "united states" AND position = "guard" AND years_for_grizzlies = "2012"
{ "answer": "SELECT school_club_team FROM table_name_70 WHERE nationality = \"united states\" AND position = \"guard\" AND years_for_grizzlies = \"2012\"", "context": "CREATE TABLE table_name_70 (school_club_team VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)", "question": "What team is from the United States and plays a guard position for the Grizzlies in 2012?" }
### QUESTION What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4? ### CONTEXT CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = "4" AND total > 4
{ "answer": "SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = \"4\" AND total > 4", "context": "CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)", "question": "What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?" }
### QUESTION Which Round has a School/Club Team of arizona, and a Pick smaller than 298? ### CONTEXT CREATE TABLE table_name_68 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) ### ANSWER SELECT MAX(round) FROM table_name_68 WHERE school_club_team = "arizona" AND pick < 298
{ "answer": "SELECT MAX(round) FROM table_name_68 WHERE school_club_team = \"arizona\" AND pick < 298", "context": "CREATE TABLE table_name_68 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)", "question": "Which Round has a School/Club Team of arizona, and a Pick smaller than 298?" }
### QUESTION Who had 0 total votes in the purple team? ### CONTEXT CREATE TABLE table_name_18 (status VARCHAR, total_votes VARCHAR, couples_team VARCHAR) ### ANSWER SELECT status FROM table_name_18 WHERE total_votes = "0" AND couples_team = "purple team"
{ "answer": "SELECT status FROM table_name_18 WHERE total_votes = \"0\" AND couples_team = \"purple team\"", "context": "CREATE TABLE table_name_18 (status VARCHAR, total_votes VARCHAR, couples_team VARCHAR)", "question": "Who had 0 total votes in the purple team?" }
### QUESTION What is the date of the match against John McEnroe with a Score of 3–6, 6–3, 2–6? ### CONTEXT CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_73 WHERE opponent = "john mcenroe" AND score = "3–6, 6–3, 2–6"
{ "answer": "SELECT date FROM table_name_73 WHERE opponent = \"john mcenroe\" AND score = \"3–6, 6–3, 2–6\"", "context": "CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR)", "question": "What is the date of the match against John McEnroe with a Score of 3–6, 6–3, 2–6?" }
### QUESTION What country has a silver medal in the boxing, heavyweight event? ### CONTEXT CREATE TABLE table_name_77 (country VARCHAR, medal VARCHAR, event VARCHAR) ### ANSWER SELECT country FROM table_name_77 WHERE medal = "silver" AND event = "boxing, heavyweight"
{ "answer": "SELECT country FROM table_name_77 WHERE medal = \"silver\" AND event = \"boxing, heavyweight\"", "context": "CREATE TABLE table_name_77 (country VARCHAR, medal VARCHAR, event VARCHAR)", "question": "What country has a silver medal in the boxing, heavyweight event?" }
### QUESTION When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share? ### CONTEXT CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR) ### ANSWER SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = "2008" AND revenue__£million_ < 4 OFFSET 177
{ "answer": "SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = \"2008\" AND revenue__£million_ < 4 OFFSET 177", "context": "CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR)", "question": "When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?" }