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