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