question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
For which to par was the score 71-74-68=213? | CREATE TABLE table_name_11 (to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_11 WHERE score = 71 - 74 - 68 = 213"
} |
What player scored 70-72-70=212? | CREATE TABLE table_name_35 (player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_35 WHERE score = 70 - 72 - 70 = 212"
} |
What is the to par for the score 72-69-68=209? | CREATE TABLE table_name_11 (to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_11 WHERE score = 72 - 69 - 68 = 209"
} |
What was Australia's to par when the place was t9? | CREATE TABLE table_name_7 (to_par VARCHAR, place VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_7 WHERE place = \"t9\" AND country = \"australia\""
} |
Wht did Mark O'Meara place when the to par was +2? | CREATE TABLE table_name_51 (place VARCHAR, to_par VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_51 WHERE to_par = \"+2\" AND player = \"mark o'meara\""
} |
What is the total number of losses for entries with 15 wins and a position larger than 3? | CREATE TABLE table_name_69 (losses INTEGER, wins VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT SUM(losses) FROM table_name_69 WHERE wins = 15 AND position > 3"
} |
What is the goal difference for entries with more than 6 draws, a position lower than 12, and fewer than 9 wins? | CREATE TABLE table_name_97 (goal_difference VARCHAR, wins VARCHAR, draws VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT goal_difference FROM table_name_97 WHERE draws > 6 AND position > 12 AND wins < 9"
} |
What is the position of club Melilla CF, with a goal difference smaller than -10? | CREATE TABLE table_name_63 (position INTEGER, club VARCHAR, goal_difference VARCHAR) | {
"SQL_Query": "SELECT SUM(position) FROM table_name_63 WHERE club = \"melilla cf\" AND goal_difference < -10"
} |
What is the sum of goals against for positions higher than 14, with fewer than 30 played? | CREATE TABLE table_name_22 (goals_against INTEGER, position VARCHAR, played VARCHAR) | {
"SQL_Query": "SELECT SUM(goals_against) FROM table_name_22 WHERE position > 14 AND played < 30"
} |
What is the average number of wins for entries with more than 32 points, a goal difference smaller than 23, and a Goals against of 36, and a Played smaller than 30? | CREATE TABLE table_name_61 (wins INTEGER, played VARCHAR, goals_against VARCHAR, points VARCHAR, goal_difference VARCHAR) | {
"SQL_Query": "SELECT AVG(wins) FROM table_name_61 WHERE points > 32 AND goal_difference < 23 AND goals_against = 36 AND played < 30"
} |
Which Location has a Year larger than 2006, and a Score of 6–3, 6–3? | CREATE TABLE table_name_78 (location VARCHAR, year VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_78 WHERE year > 2006 AND score = \"6–3, 6–3\""
} |
Which Score has a Year larger than 2004, and a Champion of gaël monfils? | CREATE TABLE table_name_68 (score VARCHAR, year VARCHAR, champion VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_68 WHERE year > 2004 AND champion = \"gaël monfils\""
} |
Which Runner-up has a Year smaller than 2008, and a Champion of josé acasuso? | CREATE TABLE table_name_49 (runner_up VARCHAR, year VARCHAR, champion VARCHAR) | {
"SQL_Query": "SELECT runner_up FROM table_name_49 WHERE year < 2008 AND champion = \"josé acasuso\""
} |
Which Champion has a Runner-up of florian mayer, and a Score of 7–6(6), 4–6, 7–5? | CREATE TABLE table_name_96 (champion VARCHAR, runner_up VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT champion FROM table_name_96 WHERE runner_up = \"florian mayer\" AND score = \"7–6(6), 4–6, 7–5\""
} |
WHAT IS THE SCORE WITH A WINNER AND OPPONENT BYRON BLACK? | CREATE TABLE table_name_89 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_89 WHERE outcome = \"winner\" AND opponent = \"byron black\""
} |
What is the number of points of the match with less than 22 games played? | CREATE TABLE table_name_69 (points VARCHAR, games_played INTEGER) | {
"SQL_Query": "SELECT COUNT(points) FROM table_name_69 WHERE games_played < 22"
} |
What is the total number of loses of the club with a 4 position and less than 23 goals conceded? | CREATE TABLE table_name_96 (loses VARCHAR, position VARCHAR, goals_conceded VARCHAR) | {
"SQL_Query": "SELECT COUNT(loses) FROM table_name_96 WHERE position = 4 AND goals_conceded < 23"
} |
What is the lowest number of games played of the club with more than 25 goals conceded, more than 17 goals scored, and a position of 7? | CREATE TABLE table_name_40 (games_played INTEGER, position VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR) | {
"SQL_Query": "SELECT MIN(games_played) FROM table_name_40 WHERE goals_conceded > 25 AND goals_scored > 17 AND position = 7"
} |
What is the lowest number of loses of the club with more than 42 goals scored, more than 20 goals conceded, and less than 3 draws? | CREATE TABLE table_name_30 (loses INTEGER, draws VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR) | {
"SQL_Query": "SELECT MIN(loses) FROM table_name_30 WHERE goals_scored > 42 AND goals_conceded > 20 AND draws < 3"
} |
What is the average number of points of the club with more than 23 goals conceded and a position larger than 12? | CREATE TABLE table_name_64 (points INTEGER, goals_conceded VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT AVG(points) FROM table_name_64 WHERE goals_conceded > 23 AND position > 12"
} |
How many goals did coe get? | CREATE TABLE table_name_80 (goals INTEGER, name VARCHAR) | {
"SQL_Query": "SELECT MIN(goals) FROM table_name_80 WHERE name = \"coe\""
} |
What is the total number of ends when the transfer fee was dkk 14m? | CREATE TABLE table_name_80 (ends VARCHAR, transfer_fee VARCHAR) | {
"SQL_Query": "SELECT COUNT(ends) FROM table_name_80 WHERE transfer_fee = \"dkk 14m\""
} |
Who had a transfer fee of dkk 6m? | CREATE TABLE table_name_39 (name VARCHAR, transfer_fee VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_39 WHERE transfer_fee = \"dkk 6m\""
} |
Craig Parry with a score of 68-68=136 is in what place? | CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_83 WHERE score = 68 - 68 = 136 AND player = \"craig parry\""
} |
What place is the golfer in who is from Spain? | CREATE TABLE table_name_21 (place VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_21 WHERE country = \"spain\""
} |
For what country does the golfer play who has a score of 72-65=137? | CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_47 WHERE score = 72 - 65 = 137"
} |
Golfer Steve Pate is in what place? | CREATE TABLE table_name_6 (place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_6 WHERE player = \"steve pate\""
} |
Which Bolton Wanderers career has 293 Apps? | CREATE TABLE table_name_77 (bolton_wanderers_career VARCHAR, apps VARCHAR) | {
"SQL_Query": "SELECT bolton_wanderers_career FROM table_name_77 WHERE apps = 293"
} |
Which Bolton Wanderers career has a Total larger than 404, and a Position of fw, and Apps less than 492, and 79 Goals? | CREATE TABLE table_name_75 (bolton_wanderers_career VARCHAR, goals VARCHAR, apps VARCHAR, total VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT bolton_wanderers_career FROM table_name_75 WHERE total > 404 AND position = \"fw\" AND apps < 492 AND goals = \"79\""
} |
How many apps have 28 goals, and a Total smaller than 191? | CREATE TABLE table_name_42 (apps INTEGER, goals VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT SUM(apps) FROM table_name_42 WHERE goals = \"28\" AND total < 191"
} |
On what Date is Sheffield Wednesday the Home team? | CREATE TABLE table_name_61 (date VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_61 WHERE home_team = \"sheffield wednesday\""
} |
What is the Tie no of the Blackburn Rovers Away game? | CREATE TABLE table_name_61 (tie_no VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT tie_no FROM table_name_61 WHERE away_team = \"blackburn rovers\""
} |
What is the Away team at the Wolverhampton Wanderers Home game with a Score of 2–0? | CREATE TABLE table_name_33 (away_team VARCHAR, score VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_33 WHERE score = \"2–0\" AND home_team = \"wolverhampton wanderers\""
} |
What is the Home team at the Blackburn Rovers Away game? | CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_70 WHERE away_team = \"blackburn rovers\""
} |
What is the Home team in the game with a Score of 2–3? | CREATE TABLE table_name_17 (home_team VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_17 WHERE score = \"2–3\""
} |
What is the 1st leg with Team 2 Lyon? | CREATE TABLE table_name_98 (team_2 VARCHAR) | {
"SQL_Query": "SELECT 1 AS st_leg FROM table_name_98 WHERE team_2 = \"lyon\""
} |
Which team is Team 1 with a Team 2 being Sporting CP? | CREATE TABLE table_name_81 (team_1 VARCHAR, team_2 VARCHAR) | {
"SQL_Query": "SELECT team_1 FROM table_name_81 WHERE team_2 = \"sporting cp\""
} |
What is the second leg for Team 1 Servette? | CREATE TABLE table_name_54 (team_1 VARCHAR) | {
"SQL_Query": "SELECT 2 AS nd_leg FROM table_name_54 WHERE team_1 = \"servette\""
} |
What was the 1999 Tournament at the US Open? | CREATE TABLE table_name_47 (tournament VARCHAR) | {
"SQL_Query": "SELECT 1999 FROM table_name_47 WHERE tournament = \"us open\""
} |
What tournament was an A 1988, and a 2R 1999? | CREATE TABLE table_name_38 (tournament VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_38 WHERE 1988 = \"a\" AND 1999 = \"2r\""
} |
What is the 1991 for 2R 1999? | CREATE TABLE table_name_92 (Id VARCHAR) | {
"SQL_Query": "SELECT 1991 FROM table_name_92 WHERE 1999 = \"2r\""
} |
What is the 1999 for an A 1991, and a 1r 1997? | CREATE TABLE table_name_45 (Id VARCHAR) | {
"SQL_Query": "SELECT 1999 FROM table_name_45 WHERE 1991 = \"a\" AND 1997 = \"1r\""
} |
What is the 1991 with a 2r 1996? | CREATE TABLE table_name_34 (Id VARCHAR) | {
"SQL_Query": "SELECT 1991 FROM table_name_34 WHERE 1996 = \"2r\""
} |
When was the Attendance larger than 74,382? | CREATE TABLE table_name_36 (date VARCHAR, attendance INTEGER) | {
"SQL_Query": "SELECT date FROM table_name_36 WHERE attendance > 74 OFFSET 382"
} |
Which venue has a status of Five Nations and an against of 22? | CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_16 WHERE status = \"five nations\" AND against = 22"
} |
What is the sum of the rounds of the match with brett chism as the opponent? | CREATE TABLE table_name_73 (round INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT SUM(round) FROM table_name_73 WHERE opponent = \"brett chism\""
} |
What is the lwoest round of wild bill's fight night 21 at 5:00? | CREATE TABLE table_name_8 (round INTEGER, time VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT MIN(round) FROM table_name_8 WHERE time = \"5:00\" AND event = \"wild bill's fight night 21\""
} |
Which Country has a To par smaller than 7, and a Place of 1? | CREATE TABLE table_name_99 (country VARCHAR, to_par VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_99 WHERE to_par < 7 AND place = \"1\""
} |
Which Place has a Country of australia, and a Score of 70-70-72=212? | CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_64 WHERE country = \"australia\" AND score = 70 - 70 - 72 = 212"
} |
What was sweden's score in T9 place? | CREATE TABLE table_name_27 (score VARCHAR, place VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_27 WHERE place = \"t9\" AND country = \"sweden\""
} |
Which To par has a Country of england, and a Place of t9, and a Player of graeme storm? | CREATE TABLE table_name_47 (to_par INTEGER, player VARCHAR, country VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT MAX(to_par) FROM table_name_47 WHERE country = \"england\" AND place = \"t9\" AND player = \"graeme storm\""
} |
What is Distance, when Venue is "Belgrade"? | CREATE TABLE table_name_39 (distance VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_name_39 WHERE venue = \"belgrade\""
} |
What is Date, when Athlete is "Yussuf Alli"? | CREATE TABLE table_name_15 (date VARCHAR, athlete VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_15 WHERE athlete = \"yussuf alli\""
} |
What is Distance, when Athlete is "Irving Saladino"? | CREATE TABLE table_name_57 (distance VARCHAR, athlete VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_name_57 WHERE athlete = \"irving saladino\""
} |
What is Athlete, when Nation is "Nigeria"? | CREATE TABLE table_name_12 (athlete VARCHAR, nation VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_12 WHERE nation = \"nigeria\""
} |
What is Nation, when Date is "2004-07-22"? | CREATE TABLE table_name_67 (nation VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT nation FROM table_name_67 WHERE date = \"2004-07-22\""
} |
What is Distance, when Date is "2008-01-12"? | CREATE TABLE table_name_18 (distance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_name_18 WHERE date = \"2008-01-12\""
} |
What is the Week of the game with a Result of w 48–20? | CREATE TABLE table_name_58 (week VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_58 WHERE result = \"w 48–20\""
} |
What is the Record of the game with a Result of l 14–16? | CREATE TABLE table_name_82 (record VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_82 WHERE result = \"l 14–16\""
} |
What is the Date of the game with a Record of 2–3–1? | CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_86 WHERE record = \"2–3–1\""
} |
What opponent has 32 as the round? | CREATE TABLE table_name_41 (opponent VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_41 WHERE round = \"32\""
} |
What year was Kelin nominated? | CREATE TABLE table_name_53 (year_ceremony VARCHAR, english_title VARCHAR) | {
"SQL_Query": "SELECT year_ceremony FROM table_name_53 WHERE english_title = \"kelin\""
} |
What was the to par score in the match that had a score of 76-71-78-67=292? | CREATE TABLE table_name_49 (to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT COUNT(to_par) FROM table_name_49 WHERE score = 76 - 71 - 78 - 67 = 292"
} |
What is Robert Allenby's average to par score? | CREATE TABLE table_name_88 (to_par INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT AVG(to_par) FROM table_name_88 WHERE player = \"robert allenby\""
} |
Can you tell me the Tournament that has the 2009 of 1r, and the 2012 of w? | CREATE TABLE table_name_1 (tournament VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_1 WHERE 2009 = \"1r\" AND 2012 = \"w\""
} |
Can you tell me the 2010 that has the 2008 of grand slam tournaments? | CREATE TABLE table_name_44 (Id VARCHAR) | {
"SQL_Query": "SELECT 2010 FROM table_name_44 WHERE 2008 = \"grand slam tournaments\""
} |
Can you tell me the 2009 that has the 2011 of A? | CREATE TABLE table_name_50 (Id VARCHAR) | {
"SQL_Query": "SELECT 2009 FROM table_name_50 WHERE 2011 = \"a\""
} |
What is the to par for the player with total of 155? | CREATE TABLE table_name_28 (to_par INTEGER, total VARCHAR) | {
"SQL_Query": "SELECT AVG(to_par) FROM table_name_28 WHERE total = 155"
} |
Who won Bronze with Notes of 2.5km, 16controls? | CREATE TABLE table_name_31 (bronze VARCHAR, notes VARCHAR) | {
"SQL_Query": "SELECT bronze FROM table_name_31 WHERE notes = \"2.5km, 16controls\""
} |
Who won Gold later than 2004 with Notes of 2.73km, 14controls? | CREATE TABLE table_name_32 (gold VARCHAR, year VARCHAR, notes VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_32 WHERE year > 2004 AND notes = \"2.73km, 14controls\""
} |
Who won Bronze with notes of 2.5km, 14controls? | CREATE TABLE table_name_60 (bronze VARCHAR, notes VARCHAR) | {
"SQL_Query": "SELECT bronze FROM table_name_60 WHERE notes = \"2.5km, 14controls\""
} |
What are the Notes against a Silver for Jenny Johansson earlier than 2006? | CREATE TABLE table_name_77 (notes VARCHAR, year VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT notes FROM table_name_77 WHERE year < 2006 AND silver = \"jenny johansson\""
} |
What is the Constituency number for Meerut? | CREATE TABLE table_name_8 (constituency_number VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT constituency_number FROM table_name_8 WHERE name = \"meerut\""
} |
What is the name for the constituency at number 48? | CREATE TABLE table_name_38 (name VARCHAR, constituency_number VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_38 WHERE constituency_number = \"48\""
} |
When bronze is more than 3, what is the rank? | CREATE TABLE table_name_19 (rank VARCHAR, bronze INTEGER) | {
"SQL_Query": "SELECT rank FROM table_name_19 WHERE bronze > 3"
} |
When rank is 7 and silver is less than 0, what is the total gold? | CREATE TABLE table_name_17 (gold INTEGER, rank VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT SUM(gold) FROM table_name_17 WHERE rank = \"7\" AND silver < 0"
} |
What player is from Wales? | CREATE TABLE table_name_84 (player VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_84 WHERE country = \"wales\""
} |
What player scored 73-68-66=207? | CREATE TABLE table_name_78 (player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_78 WHERE score = 73 - 68 - 66 = 207"
} |
What Seve Ballesteros's score? | CREATE TABLE table_name_82 (score VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_82 WHERE player = \"seve ballesteros\""
} |
What country is Craig Parry from? | CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_59 WHERE player = \"craig parry\""
} |
What country has a score of 66-73-69=208? | CREATE TABLE table_name_69 (country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_69 WHERE score = 66 - 73 - 69 = 208"
} |
What is Road Team, when Result is "74-71"? | CREATE TABLE table_name_36 (road_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT road_team FROM table_name_36 WHERE result = \"74-71\""
} |
What is Result, when Date is "April 3"? | CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_54 WHERE date = \"april 3\""
} |
What is Game, when Road Team is "Syracuse", and when Result is "96-89"? | CREATE TABLE table_name_47 (game VARCHAR, road_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_47 WHERE road_team = \"syracuse\" AND result = \"96-89\""
} |
What is Home Team, when Date is "April 10"? | CREATE TABLE table_name_58 (home_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_58 WHERE date = \"april 10\""
} |
What is Game, when Road Team is "Syracuse", and when Result is "109-82"? | CREATE TABLE table_name_77 (game VARCHAR, road_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_77 WHERE road_team = \"syracuse\" AND result = \"109-82\""
} |
What is Road Team, when Date is "April 10"? | CREATE TABLE table_name_29 (road_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT road_team FROM table_name_29 WHERE date = \"april 10\""
} |
What was the earliest round with Neil Colzie and a pick smaller than 24? | CREATE TABLE table_name_26 (round INTEGER, player VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT MIN(round) FROM table_name_26 WHERE player = \"neil colzie\" AND pick < 24"
} |
What was the score of the replay game when watford was the away team? | CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_84 WHERE tie_no = \"replay\" AND away_team = \"watford\""
} |
Who was the home team when walsall was the away team? | CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_8 WHERE away_team = \"walsall\""
} |
What is Name, when Venue is "Hong Kong"? | CREATE TABLE table_name_15 (name VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_15 WHERE venue = \"hong kong\""
} |
What is Name, when Venue is "Motherwell"? | CREATE TABLE table_name_71 (name VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_71 WHERE venue = \"motherwell\""
} |
In 1987, what is the Runners-up when Stefan Edberg is Champion? | CREATE TABLE table_name_95 (runners_up VARCHAR, champions VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT runners_up FROM table_name_95 WHERE champions = \"stefan edberg\" AND year = 1987"
} |
What were the Runners-up prior to 1990 when Ivan Lendl was Champion in the Seiko Super Tennis Tournament? | CREATE TABLE table_name_80 (runners_up VARCHAR, year VARCHAR, champions VARCHAR, name_of_tournament VARCHAR) | {
"SQL_Query": "SELECT runners_up FROM table_name_80 WHERE champions = \"ivan lendl\" AND name_of_tournament = \"seiko super tennis\" AND year < 1990"
} |
In What Tournament did Boris Becker have a Score of 7–6, 6–4? | CREATE TABLE table_name_84 (name_of_tournament VARCHAR, champions VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT name_of_tournament FROM table_name_84 WHERE champions = \"boris becker\" AND score = \"7–6, 6–4\""
} |
What is the external weapon with the falcon shield animal? | CREATE TABLE table_name_17 (external_weapon VARCHAR, shield_animal VARCHAR) | {
"SQL_Query": "SELECT external_weapon FROM table_name_17 WHERE shield_animal = \"falcon\""
} |
What cart has a serpent shield animal? | CREATE TABLE table_name_47 (cart VARCHAR, shield_animal VARCHAR) | {
"SQL_Query": "SELECT cart FROM table_name_47 WHERE shield_animal = \"serpent\""
} |
What is the external weapon of knight zeke? | CREATE TABLE table_name_26 (external_weapon VARCHAR, knight VARCHAR) | {
"SQL_Query": "SELECT external_weapon FROM table_name_26 WHERE knight = \"zeke\""
} |
What is the shield animal of knight phil? | CREATE TABLE table_name_57 (shield_animal VARCHAR, knight VARCHAR) | {
"SQL_Query": "SELECT shield_animal FROM table_name_57 WHERE knight = \"phil\""
} |
What is the external weapon with a ramhead cart? | CREATE TABLE table_name_59 (external_weapon VARCHAR, cart VARCHAR) | {
"SQL_Query": "SELECT external_weapon FROM table_name_59 WHERE cart = \"ramhead cart\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.