text
stringlengths 114
1.06k
|
---|
### question: What dates does Alex Munter have 25% and the polling firm of Decima? ### answer: SELECT polling_dates FROM table_name_41 WHERE alex_munter = "25%" AND polling_firm = "decima" ### context: CREATE TABLE table_name_41 (polling_dates VARCHAR, alex_munter VARCHAR, polling_firm VARCHAR) |
### question: What are the polling dates for polling firm Holinshed when Terry Kilrea dropped out and Bob Chiarelli has 22.5%? ### answer: SELECT terry_kilrea__dropped_out_ FROM table_name_63 WHERE polling_firm = "holinshed" AND bob_chiarelli = "22.5%" ### context: CREATE TABLE table_name_63 (terry_kilrea__dropped_out_ VARCHAR, polling_firm VARCHAR, bob_chiarelli VARCHAR) |
### question: What is Date, when Outcome is "Runner Up", and when Opponent is "Lu Jiaxiang"? ### answer: SELECT date FROM table_name_91 WHERE outcome = "runner up" AND opponent = "lu jiaxiang" ### context: CREATE TABLE table_name_91 (date VARCHAR, outcome VARCHAR, opponent VARCHAR) |
### question: What is Opponent, when Tournament is "Phuket , Thailand"? ### answer: SELECT opponent FROM table_name_8 WHERE tournament = "phuket , thailand" ### context: CREATE TABLE table_name_8 (opponent VARCHAR, tournament VARCHAR) |
### question: What is Surface, when Tournament is "Saint Joseph , United States"? ### answer: SELECT surface FROM table_name_87 WHERE tournament = "saint joseph , united states" ### context: CREATE TABLE table_name_87 (surface VARCHAR, tournament VARCHAR) |
### question: What is Tournament, when Opponent is "Lu Jiaxiang"? ### answer: SELECT tournament FROM table_name_98 WHERE opponent = "lu jiaxiang" ### context: CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR) |
### question: What is Outcome, when Tournament is "Chiang Mai , Thailand"? ### answer: SELECT outcome FROM table_name_90 WHERE tournament = "chiang mai , thailand" ### context: CREATE TABLE table_name_90 (outcome VARCHAR, tournament VARCHAR) |
### question: What is Outcome, when Date is "19 September 2012"? ### answer: SELECT outcome FROM table_name_97 WHERE date = "19 september 2012" ### context: CREATE TABLE table_name_97 (outcome VARCHAR, date VARCHAR) |
### question: What Poles have Races smaller than 4? ### answer: SELECT AVG(poles) FROM table_name_59 WHERE races < 4 ### context: CREATE TABLE table_name_59 (poles INTEGER, races INTEGER) |
### question: What is the sum of Points with a Series of italian formula renault 2.0, and Poles smaller than 0? ### answer: SELECT COUNT(points) FROM table_name_39 WHERE series = "italian formula renault 2.0" AND poles < 0 ### context: CREATE TABLE table_name_39 (points VARCHAR, series VARCHAR, poles VARCHAR) |
### question: What is the total number of Points with Wins larger than 0, a Position of 12th, and Poles larger than 0? ### answer: SELECT SUM(points) FROM table_name_67 WHERE wins > 0 AND position = "12th" AND poles > 0 ### context: CREATE TABLE table_name_67 (points INTEGER, poles VARCHAR, wins VARCHAR, position VARCHAR) |
### question: What is the smallest Wins with a Position of 20th, and Poles smaller than 0? ### answer: SELECT MIN(wins) FROM table_name_19 WHERE position = "20th" AND poles < 0 ### context: CREATE TABLE table_name_19 (wins INTEGER, position VARCHAR, poles VARCHAR) |
### question: What is the date of the match located in Madrid, Esp? ### answer: SELECT date FROM table_name_69 WHERE location = "madrid, esp" ### context: CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR) |
### question: Can you tell me the Miss Pilipinas that has the Second runner-up of maria penson? ### answer: SELECT miss_maja_pilipinas FROM table_name_55 WHERE second_runner_up = "maria penson" ### context: CREATE TABLE table_name_55 (miss_maja_pilipinas VARCHAR, second_runner_up VARCHAR) |
### question: Can you tell me the Miss Maja Pilipinas that has the Year of 1969? ### answer: SELECT miss_maja_pilipinas FROM table_name_30 WHERE year = 1969 ### context: CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, year VARCHAR) |
### question: Can you tell me the Third runner-up that has the Year of 1969? ### answer: SELECT third_runner_up FROM table_name_80 WHERE year = 1969 ### context: CREATE TABLE table_name_80 (third_runner_up VARCHAR, year VARCHAR) |
### question: Which Byes have an Against smaller than 1466, and Losses smaller than 6? ### answer: SELECT byes FROM table_name_91 WHERE against < 1466 AND losses < 6 ### context: CREATE TABLE table_name_91 (byes VARCHAR, against VARCHAR, losses VARCHAR) |
### question: What was week 2's opponent? ### answer: SELECT opponent FROM table_name_47 WHERE week = 2 ### context: CREATE TABLE table_name_47 (opponent VARCHAR, week VARCHAR) |
### question: Which Week has an Attendance of 20,112? ### answer: SELECT MAX(week) FROM table_name_91 WHERE attendance = 20 OFFSET 112 ### context: CREATE TABLE table_name_91 (week INTEGER, attendance VARCHAR) |
### question: What is the margin of victory of the Dodge Intrepid? ### answer: SELECT margin_of_victory FROM table_name_37 WHERE make = "dodge intrepid" ### context: CREATE TABLE table_name_37 (margin_of_victory VARCHAR, make VARCHAR) |
### question: What is the lowest car number sponsored by UPS before 2001? ### answer: SELECT MIN(car__number) FROM table_name_22 WHERE sponsor = "ups" AND season < 2001 ### context: CREATE TABLE table_name_22 (car__number INTEGER, sponsor VARCHAR, season VARCHAR) |
### question: Who sponsored Greg Biffle's win on April 14? ### answer: SELECT sponsor FROM table_name_46 WHERE winning_driver = "greg biffle" AND date = "april 14" ### context: CREATE TABLE table_name_46 (sponsor VARCHAR, winning_driver VARCHAR, date VARCHAR) |
### question: What is the highest car number sponsored by Post-It / National Guard? ### answer: SELECT MAX(car__number) FROM table_name_40 WHERE sponsor = "post-it / national guard" ### context: CREATE TABLE table_name_40 (car__number INTEGER, sponsor VARCHAR) |
### question: How many seasons has UPS sponsored a car with a number larger than 17? ### answer: SELECT COUNT(season) FROM table_name_9 WHERE car__number > 17 AND sponsor = "ups" ### context: CREATE TABLE table_name_9 (season VARCHAR, car__number VARCHAR, sponsor VARCHAR) |
### question: What shows for set 2 when Set 1 is 29–27? ### answer: SELECT set_2 FROM table_name_61 WHERE set_1 = "29–27" ### context: CREATE TABLE table_name_61 (set_2 VARCHAR, set_1 VARCHAR) |
### question: What is the time when the set 1 is 21–25? ### answer: SELECT time FROM table_name_48 WHERE set_1 = "21–25" ### context: CREATE TABLE table_name_48 (time VARCHAR, set_1 VARCHAR) |
### question: What is the score when the set 3 is 26–28? ### answer: SELECT score FROM table_name_5 WHERE set_3 = "26–28" ### context: CREATE TABLE table_name_5 (score VARCHAR, set_3 VARCHAR) |
### question: What is the Score when the set 3 is 26–28? ### answer: SELECT score FROM table_name_68 WHERE set_3 = "26–28" ### context: CREATE TABLE table_name_68 (score VARCHAR, set_3 VARCHAR) |
### question: What is the set 3 when the total is 78–92? ### answer: SELECT set_3 FROM table_name_95 WHERE total = "78–92" ### context: CREATE TABLE table_name_95 (set_3 VARCHAR, total VARCHAR) |
### question: What is the total when the set 1 is 21–25? ### answer: SELECT total FROM table_name_95 WHERE set_1 = "21–25" ### context: CREATE TABLE table_name_95 (total VARCHAR, set_1 VARCHAR) |
### question: How many total losses were with less than 51 draws but more than 6 wins? ### answer: SELECT COUNT(losses) FROM table_name_75 WHERE draw < 51 AND wins > 6 ### context: CREATE TABLE table_name_75 (losses VARCHAR, draw VARCHAR, wins VARCHAR) |
### question: How many matches has 51 draws and more than 6 against? ### answer: SELECT SUM(matches) FROM table_name_86 WHERE against > 6 AND draw = 51 ### context: CREATE TABLE table_name_86 (matches INTEGER, against VARCHAR, draw VARCHAR) |
### question: How many wins has more than 165 against? ### answer: SELECT MAX(wins) FROM table_name_80 WHERE against > 165 ### context: CREATE TABLE table_name_80 (wins INTEGER, against INTEGER) |
### question: How many draws have less than 35 losses with 136 matches and less than 146 against? ### answer: SELECT AVG(draw) FROM table_name_47 WHERE losses < 35 AND matches = 136 AND against < 146 ### context: CREATE TABLE table_name_47 (draw INTEGER, against VARCHAR, losses VARCHAR, matches VARCHAR) |
### question: How many Againsts have more than 15 wins? ### answer: SELECT COUNT(against) FROM table_name_84 WHERE wins > 15 ### context: CREATE TABLE table_name_84 (against VARCHAR, wins INTEGER) |
### question: Which Byes have Losses larger than 0, and an Against larger than 3049? ### answer: SELECT AVG(byes) FROM table_name_7 WHERE losses > 0 AND against > 3049 ### context: CREATE TABLE table_name_7 (byes INTEGER, losses VARCHAR, against VARCHAR) |
### question: What is the total number of Points 1, when Position is "7", and when Drawn is greater than 6? ### answer: SELECT COUNT(points_1) FROM table_name_62 WHERE position = 7 AND drawn > 6 ### context: CREATE TABLE table_name_62 (points_1 VARCHAR, position VARCHAR, drawn VARCHAR) |
### question: What is the highest Goals For, when Team is "Cheadle Town", and when Drawn is greater than 7? ### answer: SELECT MAX(goals_for) FROM table_name_2 WHERE team = "cheadle town" AND drawn > 7 ### context: CREATE TABLE table_name_2 (goals_for INTEGER, team VARCHAR, drawn VARCHAR) |
### question: What is the sum of Position, when Points 1 is greater than 23, and when Goals For is "77"? ### answer: SELECT SUM(position) FROM table_name_44 WHERE points_1 > 23 AND goals_for = 77 ### context: CREATE TABLE table_name_44 (position INTEGER, points_1 VARCHAR, goals_for VARCHAR) |
### question: What is Played, when Goal Difference is "+51"? ### answer: SELECT played FROM table_name_91 WHERE goal_difference = "+51" ### context: CREATE TABLE table_name_91 (played VARCHAR, goal_difference VARCHAR) |
### question: What is Date, when Surface is "Carpet"? ### answer: SELECT date FROM table_name_24 WHERE surface = "carpet" ### context: CREATE TABLE table_name_24 (date VARCHAR, surface VARCHAR) |
### question: What is Tournament, when Date is "6 October 2008"? ### answer: SELECT tournament FROM table_name_82 WHERE date = "6 october 2008" ### context: CREATE TABLE table_name_82 (tournament VARCHAR, date VARCHAR) |
### question: What is Surface, when Tournament is "Sunderland , United Kingdom"? ### answer: SELECT surface FROM table_name_4 WHERE tournament = "sunderland , united kingdom" ### context: CREATE TABLE table_name_4 (surface VARCHAR, tournament VARCHAR) |
### question: Who replaced István Sándor? ### answer: SELECT replaced_by FROM table_name_58 WHERE outgoing_manager = "istván sándor" ### context: CREATE TABLE table_name_58 (replaced_by VARCHAR, outgoing_manager VARCHAR) |
### question: What is the position that has the outgoing manager lászló Dajka? ### answer: SELECT position_in_table FROM table_name_60 WHERE outgoing_manager = "lászló dajka" ### context: CREATE TABLE table_name_60 (position_in_table VARCHAR, outgoing_manager VARCHAR) |
### question: When was outgoing manager Zoltán Varga appointed? ### answer: SELECT date_of_appointment FROM table_name_77 WHERE outgoing_manager = "zoltán varga" ### context: CREATE TABLE table_name_77 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) |
### question: Can you tell me the Score that has the Date of 05 dec? ### answer: SELECT score FROM table_name_28 WHERE date = "05 dec" ### context: CREATE TABLE table_name_28 (score VARCHAR, date VARCHAR) |
### question: What is the average number of points of the team with more than 17 pg won? ### answer: SELECT AVG(points__pts_) FROM table_name_26 WHERE won__pg_ > 17 ### context: CREATE TABLE table_name_26 (points__pts_ INTEGER, won__pg_ INTEGER) |
### question: What is the total number of pg won of the team with 64 goals conceded and more than 33 goals scored? ### answer: SELECT COUNT(won__pg_) FROM table_name_67 WHERE goals_conceded__gc_ = 64 AND goals_scored__gf_ > 33 ### context: CREATE TABLE table_name_67 (won__pg_ VARCHAR, goals_conceded__gc_ VARCHAR, goals_scored__gf_ VARCHAR) |
### question: What is the sum of the pe draw of team plaza amador, who has less than 6 pg won? ### answer: SELECT SUM(draw__pe_) FROM table_name_28 WHERE team__equipo_ = "plaza amador" AND won__pg_ < 6 ### context: CREATE TABLE table_name_28 (draw__pe_ INTEGER, team__equipo_ VARCHAR, won__pg_ VARCHAR) |
### question: What is the sum of the places of the team with more than 49 points and less than 54 goals scored? ### answer: SELECT SUM(place__posición_) FROM table_name_70 WHERE points__pts_ > 49 AND goals_scored__gf_ < 54 ### context: CREATE TABLE table_name_70 (place__posición_ INTEGER, points__pts_ VARCHAR, goals_scored__gf_ VARCHAR) |
### question: WHAT IS THE AWAY WITH HOME AT 2-2? ### answer: SELECT away FROM table_name_15 WHERE home = "2-2" ### context: CREATE TABLE table_name_15 (away VARCHAR, home VARCHAR) |
### question: WHAT IS THE LEAGUE WITH HOME 1-1? ### answer: SELECT league FROM table_name_63 WHERE home = "1-1" ### context: CREATE TABLE table_name_63 (league VARCHAR, home VARCHAR) |
### question: What is the Weight of the person born 1981-02-24 from the Uralochka Zlatoust club ? ### answer: SELECT weight FROM table_name_31 WHERE club = "uralochka zlatoust" AND date_of_birth = "1981-02-24" ### context: CREATE TABLE table_name_31 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR) |
### question: What is the sum of households that makes a median household income of $44,718? ### answer: SELECT SUM(number_of_households) FROM table_name_43 WHERE median_household_income = "$44,718" ### context: CREATE TABLE table_name_43 (number_of_households INTEGER, median_household_income VARCHAR) |
### question: What is the highest population for Baraga County with less than 3,444 households? ### answer: SELECT MAX(population) FROM table_name_96 WHERE county = "baraga" AND number_of_households < 3 OFFSET 444 ### context: CREATE TABLE table_name_96 (population INTEGER, county VARCHAR, number_of_households VARCHAR) |
### question: Which golfer had a score of 68-70-68-66=272? ### answer: SELECT player FROM table_name_3 WHERE score = 68 - 70 - 68 - 66 = 272 ### context: CREATE TABLE table_name_3 (player VARCHAR, score VARCHAR) |
### question: What place was the golfer with a score of 67-67-66-68=268 ranked in? ### answer: SELECT place FROM table_name_62 WHERE score = 67 - 67 - 66 - 68 = 268 ### context: CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR) |
### question: Which category was Maite Perroni nominated for earlier than 2009? ### answer: SELECT category FROM table_name_37 WHERE nominated = "maite perroni" AND year < 2009 ### context: CREATE TABLE table_name_37 (category VARCHAR, nominated VARCHAR, year VARCHAR) |
### question: In what year was there an award for TV Adicto Golden Awards and the category Female Revelation? ### answer: SELECT year FROM table_name_78 WHERE award = "tv adicto golden awards" AND category = "female revelation" ### context: CREATE TABLE table_name_78 (year VARCHAR, award VARCHAR, category VARCHAR) |
### question: What winner has silence-lotto as the team classification? ### answer: SELECT winner FROM table_name_49 WHERE team_classification = "silence-lotto" ### context: CREATE TABLE table_name_49 (winner VARCHAR, team_classification VARCHAR) |
### question: What general classification has david de la fuente as mountains classification, and thor hushovd as points classification? ### answer: SELECT general_classification FROM table_name_45 WHERE mountains_classification = "david de la fuente" AND points_classification = "thor hushovd" ### context: CREATE TABLE table_name_45 (general_classification VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) |
### question: What general classification has levi leipheimer as points classification? ### answer: SELECT general_classification FROM table_name_26 WHERE points_classification = "levi leipheimer" ### context: CREATE TABLE table_name_26 (general_classification VARCHAR, points_classification VARCHAR) |
### question: What team classification has alejandro valverde as points classification, with alejandro valverde as the winner, with 3 as the stage? ### answer: SELECT team_classification FROM table_name_26 WHERE points_classification = "alejandro valverde" AND winner = "alejandro valverde" AND stage = "3" ### context: CREATE TABLE table_name_26 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, winner VARCHAR) |
### question: What winner has pierre rolland as mountains classification, with 7 as the stage? ### answer: SELECT winner FROM table_name_14 WHERE mountains_classification = "pierre rolland" AND stage = "7" ### context: CREATE TABLE table_name_14 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR) |
### question: What general classification has 4 as the stage? ### answer: SELECT general_classification FROM table_name_96 WHERE stage = "4" ### context: CREATE TABLE table_name_96 (general_classification VARCHAR, stage VARCHAR) |
### question: What are the lowest lost has 111 as the goals against? ### answer: SELECT MIN(lost) FROM table_name_9 WHERE goals_against = 111 ### context: CREATE TABLE table_name_9 (lost INTEGER, goals_against VARCHAR) |
### question: What is the highest goals against that has 15 as position? ### answer: SELECT MAX(goals_against) FROM table_name_4 WHERE position = 15 ### context: CREATE TABLE table_name_4 (goals_against INTEGER, position VARCHAR) |
### question: Hiw many losses have 30 for the goals with points greater than 24? ### answer: SELECT COUNT(losses) FROM table_name_71 WHERE goals_for = 30 AND points > 24 ### context: CREATE TABLE table_name_71 (losses VARCHAR, goals_for VARCHAR, points VARCHAR) |
### question: How many draws have goals for less than 56, 10 as the postion, with goals against less than 45? ### answer: SELECT COUNT(draws) FROM table_name_26 WHERE goals_for < 56 AND position = 10 AND goals_against < 45 ### context: CREATE TABLE table_name_26 (draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, position VARCHAR) |
### question: What is the highest draws that have 31 for points, wins greater than 12, with a goal difference less than 11? ### answer: SELECT MAX(draws) FROM table_name_8 WHERE points = 31 AND wins > 12 AND goal_difference < 11 ### context: CREATE TABLE table_name_8 (draws INTEGER, goal_difference VARCHAR, points VARCHAR, wins VARCHAR) |
### question: Name Road Team of Game of game 4? ### answer: SELECT road_team FROM table_name_66 WHERE game = "game 4" ### context: CREATE TABLE table_name_66 (road_team VARCHAR, game VARCHAR) |
### question: Which Date has a Road Team of chicago, and a Result of 88-85 (ot)? ### answer: SELECT date FROM table_name_33 WHERE road_team = "chicago" AND result = "88-85 (ot)" ### context: CREATE TABLE table_name_33 (date VARCHAR, road_team VARCHAR, result VARCHAR) |
### question: Which Home Team is on june 12? ### answer: SELECT home_team FROM table_name_3 WHERE date = "june 12" ### context: CREATE TABLE table_name_3 (home_team VARCHAR, date VARCHAR) |
### question: Which Result that is on june 5? ### answer: SELECT result FROM table_name_79 WHERE date = "june 5" ### context: CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR) |
### question: Which Date has Result of 86-87? ### answer: SELECT date FROM table_name_58 WHERE result = "86-87" ### context: CREATE TABLE table_name_58 (date VARCHAR, result VARCHAR) |
### question: Which Result has a Game of game 1? ### answer: SELECT result FROM table_name_86 WHERE game = "game 1" ### context: CREATE TABLE table_name_86 (result VARCHAR, game VARCHAR) |
### question: What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari? ### answer: SELECT miss_maja_pilipinas FROM table_name_30 WHERE binibining_pilipinas_tourism = "not awarded" AND binibining_pilipinas_universe = "anjanette abayari" ### context: CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, binibining_pilipinas_tourism VARCHAR, binibining_pilipinas_universe VARCHAR) |
### question: What Binibining Pilipinas-International has a Year larger than 1990, and a Binibining Pilipinas-Universe of maria lourdes gonzalez? ### answer: SELECT binibining_pilipinas_international FROM table_name_7 WHERE year > 1990 AND binibining_pilipinas_universe = "maria lourdes gonzalez" ### context: CREATE TABLE table_name_7 (binibining_pilipinas_international VARCHAR, year VARCHAR, binibining_pilipinas_universe VARCHAR) |
### question: What First runner-up has a Miss Maja Pilipinas of nanette prodigalidad? ### answer: SELECT first_runner_up FROM table_name_40 WHERE miss_maja_pilipinas = "nanette prodigalidad" ### context: CREATE TABLE table_name_40 (first_runner_up VARCHAR, miss_maja_pilipinas VARCHAR) |
### question: What is the smallest Year with a Binibining Pilipinas-International of jessie alice salones dixson? ### answer: SELECT MIN(year) FROM table_name_90 WHERE binibining_pilipinas_international = "jessie alice salones dixson" ### context: CREATE TABLE table_name_90 (year INTEGER, binibining_pilipinas_international VARCHAR) |
### question: What Binibining Pilipinas-International has a Year of 1975? ### answer: SELECT binibining_pilipinas_international FROM table_name_2 WHERE year = 1975 ### context: CREATE TABLE table_name_2 (binibining_pilipinas_international VARCHAR, year VARCHAR) |
### question: What is To par, when Player is "Jesper Parnevik"? ### answer: SELECT to_par FROM table_name_47 WHERE player = "jesper parnevik" ### context: CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR) |
### question: What is Player, when Place is "1"? ### answer: SELECT player FROM table_name_43 WHERE place = "1" ### context: CREATE TABLE table_name_43 (player VARCHAR, place VARCHAR) |
### question: What is To par, when Country is "United States", and when Player is "Mark Brooks"? ### answer: SELECT to_par FROM table_name_74 WHERE country = "united states" AND player = "mark brooks" ### context: CREATE TABLE table_name_74 (to_par VARCHAR, country VARCHAR, player VARCHAR) |
### question: What is Place, when Player is "Phil Mickelson"? ### answer: SELECT place FROM table_name_17 WHERE player = "phil mickelson" ### context: CREATE TABLE table_name_17 (place VARCHAR, player VARCHAR) |
### question: What is Score, when Player is "Brad Faxon"? ### answer: SELECT score FROM table_name_68 WHERE player = "brad faxon" ### context: CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR) |
### question: What was the edition after 2003 when the Third was Tikveš and Sileks was the runner-up? ### answer: SELECT MIN(edition) FROM table_name_64 WHERE year > 2003 AND third = "tikveš" AND runner_up = "sileks" ### context: CREATE TABLE table_name_64 (edition INTEGER, runner_up VARCHAR, year VARCHAR, third VARCHAR) |
### question: What was the latest year with an edition of 14? ### answer: SELECT MAX(year) FROM table_name_7 WHERE edition = 14 ### context: CREATE TABLE table_name_7 (year INTEGER, edition VARCHAR) |
### question: What was the venue for the game on 18/03/2006? ### answer: SELECT venue FROM table_name_28 WHERE date = "18/03/2006" ### context: CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR) |
### question: What was the score when the place was t8? ### answer: SELECT score FROM table_name_96 WHERE place = "t8" ### context: CREATE TABLE table_name_96 (score VARCHAR, place VARCHAR) |
### question: What country scored 71-66-66-71=274? ### answer: SELECT country FROM table_name_32 WHERE score = 71 - 66 - 66 - 71 = 274 ### context: CREATE TABLE table_name_32 (country VARCHAR, score VARCHAR) |
### question: What country scored 66-65-66-72=269? ### answer: SELECT country FROM table_name_2 WHERE score = 66 - 65 - 66 - 72 = 269 ### context: CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR) |
### question: What was the money for place t3 and United States? ### answer: SELECT money___$__ FROM table_name_94 WHERE place = "t3" AND country = "united states" ### context: CREATE TABLE table_name_94 (money___$__ VARCHAR, place VARCHAR, country VARCHAR) |
### question: What country does Jeff Sluman play for? ### answer: SELECT country FROM table_name_52 WHERE player = "jeff sluman" ### context: CREATE TABLE table_name_52 (country VARCHAR, player VARCHAR) |
### question: What was the to par for place t8 and a score of 71-66-66-71=274? ### answer: SELECT to_par FROM table_name_70 WHERE place = "t8" AND score = 71 - 66 - 66 - 71 = 274 ### context: CREATE TABLE table_name_70 (to_par VARCHAR, place VARCHAR, score VARCHAR) |
### question: What home team played against Fleetwood Town? ### answer: SELECT home_team FROM table_name_47 WHERE away_team = "fleetwood town" ### context: CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR) |
### question: What callsign has 1300 as the frequency? ### answer: SELECT callsign FROM table_name_66 WHERE frequency = 1300 ### context: CREATE TABLE table_name_66 (callsign VARCHAR, frequency VARCHAR) |
### question: What's the name of the stadium when the club was F.C. Igea Virtus Barcellona? ### answer: SELECT stadium FROM table_name_66 WHERE club = "f.c. igea virtus barcellona" ### context: CREATE TABLE table_name_66 (stadium VARCHAR, club VARCHAR) |
### question: What was the largest capacity when the club was F.C. Igea Virtus Barcellona? ### answer: SELECT MAX(capacity) FROM table_name_30 WHERE club = "f.c. igea virtus barcellona" ### context: CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.