question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What was the method when the fight's time was 1:52? | CREATE TABLE table_name_31 (method VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT method FROM table_name_31 WHERE time = \"1:52\""
} |
What is the lowest overs of the Chennai Super Kings when the Economy Rate is less than 5.92 with a Best Bowling number of 2/17? | CREATE TABLE table_name_29 (overs INTEGER, economy_rate VARCHAR, team VARCHAR, best_bowling VARCHAR) | {
"SQL_Query": "SELECT MIN(overs) FROM table_name_29 WHERE team = \"chennai super kings\" AND best_bowling = \"2/17\" AND economy_rate < 5.92"
} |
What is the lowest number of Overs for the Royal Challengers Bangalore? | CREATE TABLE table_name_50 (overs INTEGER, team VARCHAR) | {
"SQL_Query": "SELECT MIN(overs) FROM table_name_50 WHERE team = \"royal challengers bangalore\""
} |
What is the highest Strike Rate when the average is less than 50.25 with less than 13 matches played? | CREATE TABLE table_name_15 (strike_rate INTEGER, matches VARCHAR, average VARCHAR) | {
"SQL_Query": "SELECT MAX(strike_rate) FROM table_name_15 WHERE matches < 13 AND average < 50.25"
} |
What is the venue of the race where Lineth Chepkurui placed 4th? | CREATE TABLE table_name_12 (venue VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_12 WHERE position = \"4th\""
} |
What is the venue of the team race that was before 2010? | CREATE TABLE table_name_13 (venue VARCHAR, notes VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_13 WHERE notes = \"team\" AND year < 2010"
} |
What is the venue of the team race that was after 2008? | CREATE TABLE table_name_23 (venue VARCHAR, year VARCHAR, notes VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = \"team\""
} |
What competition did Lineth Chepkurui place 5th? | CREATE TABLE table_name_27 (competition VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_27 WHERE position = \"5th\""
} |
How many votes did Lee Teng-Hui receive when he was elected? | CREATE TABLE table_name_7 (total_votes INTEGER, outcome VARCHAR, candidate VARCHAR) | {
"SQL_Query": "SELECT MAX(total_votes) FROM table_name_7 WHERE outcome = \"elected\" AND candidate = \"lee teng-hui\""
} |
What was the score for a match before 13, and a home game on April 21, 2008? | CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR, match VARCHAR, home_away VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_11 WHERE match < 13 AND home_away = \"home\" AND date = \"april 21, 2008\""
} |
What home/away game is on February 29, 2008? | CREATE TABLE table_name_19 (home_away VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT home_away FROM table_name_19 WHERE date = \"february 29, 2008\""
} |
What team was the home team when Manchester City was the away team? | CREATE TABLE table_name_88 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_88 WHERE away_team = \"manchester city\""
} |
What is the sum of Points, when Equipment was "Zabel-BSU", and when Position was 42? | CREATE TABLE table_name_39 (points INTEGER, equipment VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT SUM(points) FROM table_name_39 WHERE equipment = \"zabel-bsu\" AND position = 42"
} |
What is Equipment, when Points is less than 6, and when Position is 53? | CREATE TABLE table_name_79 (equipment VARCHAR, points VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT equipment FROM table_name_79 WHERE points < 6 AND position = 53"
} |
What is Second, when Position is greater than 33, when Points is greater than 12, and when Equipment is Zabel-VMC? | CREATE TABLE table_name_51 (second VARCHAR, equipment VARCHAR, position VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT second FROM table_name_51 WHERE position > 33 AND points > 12 AND equipment = \"zabel-vmc\""
} |
What is Equipment, when Position is greater than 28, and when Points is greater than 10? | CREATE TABLE table_name_51 (equipment VARCHAR, position VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT equipment FROM table_name_51 WHERE position > 28 AND points > 10"
} |
When Hawthorn is the away team, what is their score? | CREATE TABLE table_name_84 (away_team VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_84 WHERE away_team = \"hawthorn\""
} |
Which ground has a crowd over 41,185? | CREATE TABLE table_name_79 (ground VARCHAR, crowd INTEGER) | {
"SQL_Query": "SELECT ground FROM table_name_79 WHERE crowd > 41 OFFSET 185"
} |
What place has a 67-68-78-77=290 score? | CREATE TABLE table_name_25 (place VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_25 WHERE score = 67 - 68 - 78 - 77 = 290"
} |
What is the highest to par of the player from the United States with a t3 place and a 74-73-72-69=288 place? | CREATE TABLE table_name_30 (to_par INTEGER, country VARCHAR, place VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT MAX(to_par) FROM table_name_30 WHERE country = \"united states\" AND place = \"t3\" AND score = 74 - 73 - 72 - 69 = 288"
} |
What is the place of player peter oosterhuis, who has $7,500? | CREATE TABLE table_name_7 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_7 WHERE money___$__ = \"7,500\" AND player = \"peter oosterhuis\""
} |
What country has a 72-70-75-72=289 score? | CREATE TABLE table_name_23 (country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_23 WHERE score = 72 - 70 - 75 - 72 = 289"
} |
Who is the player from the United States with a 4 to par and a 74-73-72-69=288 score? | CREATE TABLE table_name_20 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_20 WHERE country = \"united states\" AND to_par = 4 AND score = 74 - 73 - 72 - 69 = 288"
} |
How much money does the player with a to par less than 4 and a score of 74-72-68-73=287 have? | CREATE TABLE table_name_75 (money___$__ VARCHAR, to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT money___$__ FROM table_name_75 WHERE to_par < 4 AND score = 74 - 72 - 68 - 73 = 287"
} |
What is High Assists, when High Points is "Tayshaun Prince (23)"? | CREATE TABLE table_name_64 (high_assists VARCHAR, high_points VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_name_64 WHERE high_points = \"tayshaun prince (23)\""
} |
What is Date, when Team is "Orlando"? | CREATE TABLE table_name_72 (date VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_72 WHERE team = \"orlando\""
} |
Which team has finished in 1st place in 2011? | CREATE TABLE table_name_95 (team VARCHAR, pos VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_95 WHERE pos = \"1st\" AND year = 2011"
} |
What is the Episode number of Ernest Dickerson in 2009 when the show was dexter? | CREATE TABLE table_name_19 (episode VARCHAR, year VARCHAR, show VARCHAR) | {
"SQL_Query": "SELECT episode FROM table_name_19 WHERE year = 2009 AND show = \"dexter\""
} |
What is the result on 29 September 2007? | CREATE TABLE table_name_39 (result VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_39 WHERE date = \"29 september 2007\""
} |
Which competition was on 29 September 2007? | CREATE TABLE table_name_66 (competition VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_66 WHERE date = \"29 september 2007\""
} |
Where was the game where the senators scored 80 points? | CREATE TABLE table_name_35 (location VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_35 WHERE points = 80"
} |
What is the highest number of points against the boston bruins on game 77? | CREATE TABLE table_name_1 (points INTEGER, opponent VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT MAX(points) FROM table_name_1 WHERE opponent = \"boston bruins\" AND game = 77"
} |
WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17? | CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT MIN(grid) FROM table_name_72 WHERE time_retired = \"retirement\" AND laps > 17"
} |
WHAT IS THE GRID WITH AN ACCIDENT AND HONDA MANUFACTURER? | CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, manufacturer VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_72 WHERE time_retired = \"accident\" AND manufacturer = \"honda\""
} |
What was the date of death for a rank below 14 and age of 103 years, 148 days? | CREATE TABLE table_name_61 (death_date VARCHAR, rank VARCHAR, age__as_of_1_february_2014_ VARCHAR) | {
"SQL_Query": "SELECT death_date FROM table_name_61 WHERE rank < 14 AND age__as_of_1_february_2014_ = \"103 years, 148 days\""
} |
What is the age of Fred Gibson? | CREATE TABLE table_name_15 (age__as_of_1_february_2014_ VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT age__as_of_1_february_2014_ FROM table_name_15 WHERE name = \"fred gibson\""
} |
Who is at rank 9? | CREATE TABLE table_name_72 (name VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_72 WHERE rank = 9"
} |
What is the finish of player Hale Irwin? | CREATE TABLE table_name_25 (finish VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT finish FROM table_name_25 WHERE player = \"hale irwin\""
} |
What is the finish of South Africa? | CREATE TABLE table_name_63 (finish VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT finish FROM table_name_63 WHERE country = \"south africa\""
} |
With a nominative of chven-i what is the ergative? | CREATE TABLE table_name_56 (ergative VARCHAR, nominative VARCHAR) | {
"SQL_Query": "SELECT ergative FROM table_name_56 WHERE nominative = \"chven-i\""
} |
What instrumental has tkven-i as the genitive? | CREATE TABLE table_name_42 (instrumental VARCHAR, genitive VARCHAR) | {
"SQL_Query": "SELECT instrumental FROM table_name_42 WHERE genitive = \"tkven-i\""
} |
What nominative has mis as the dative? | CREATE TABLE table_name_91 (nominative VARCHAR, dative VARCHAR) | {
"SQL_Query": "SELECT nominative FROM table_name_91 WHERE dative = \"mis\""
} |
With chem-s as the dative, what is the ergative? | CREATE TABLE table_name_85 (ergative VARCHAR, dative VARCHAR) | {
"SQL_Query": "SELECT ergative FROM table_name_85 WHERE dative = \"chem-s\""
} |
What instrumental has chven-s as the adverbial? | CREATE TABLE table_name_87 (instrumental VARCHAR, adverbial VARCHAR) | {
"SQL_Query": "SELECT instrumental FROM table_name_87 WHERE adverbial = \"chven-s\""
} |
Mis-i is the nominative of what ergative? | CREATE TABLE table_name_48 (ergative VARCHAR, nominative VARCHAR) | {
"SQL_Query": "SELECT ergative FROM table_name_48 WHERE nominative = \"mis-i\""
} |
what was the week for the match on a hard surface at Indian Wells tournament? | CREATE TABLE table_name_88 (week VARCHAR, surface VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_88 WHERE surface = \"hard\" AND tournament = \"indian wells\""
} |
What week was the tournament at Cincinnati? | CREATE TABLE table_name_57 (week VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_57 WHERE tournament = \"cincinnati\""
} |
Where was the tournament where the match was on a hard surface and jan-michael gambill (19) was the finalist? | CREATE TABLE table_name_75 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_75 WHERE surface = \"hard\" AND finalist = \"jan-michael gambill (19)\""
} |
Who was the semifinalist at the tournament in miami? | CREATE TABLE table_name_21 (semifinalists VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT semifinalists FROM table_name_21 WHERE tournament = \"miami\""
} |
Who was the winner at the tournament in Hamburg? | CREATE TABLE table_name_11 (winner VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT winner FROM table_name_11 WHERE tournament = \"hamburg\""
} |
what is the venue on 21 june 1987? | CREATE TABLE table_name_43 (venue VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_43 WHERE year = \"21 june 1987\""
} |
When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium? | CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR, winner VARCHAR, runner_up VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_65 WHERE winner = \"panathinaikos\" AND runner_up = \"olympiacos\" AND venue = \"nikos goumas stadium\""
} |
When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis? | CREATE TABLE table_name_12 (year VARCHAR, runner_up VARCHAR, winner VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_12 WHERE winner = \"olympiacos\" AND venue = \"georgios karaiskakis stadium\" AND runner_up = \"iraklis\""
} |
when is the venue nikos goumas stadium and the score is 2–2 4–4 a.e.t. 6–5 pso? | CREATE TABLE table_name_44 (year VARCHAR, venue VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_44 WHERE venue = \"nikos goumas stadium\" AND score = \"2–2 4–4 a.e.t. 6–5 pso\""
} |
what is the score when the venue is athens olympic stadium on 30 april 2011? | CREATE TABLE table_name_78 (score VARCHAR, venue VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_78 WHERE venue = \"athens olympic stadium\" AND year = \"30 april 2011\""
} |
Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)? | CREATE TABLE table_name_79 (season VARCHAR, skip VARCHAR, third VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_79 WHERE skip = \"eve muirhead\" AND third = \"jackie lockhart (e/o) kelly wood (w)\""
} |
What is the season with a Skip of Eve Muirhead and a third of Kerry Barr? | CREATE TABLE table_name_42 (season VARCHAR, skip VARCHAR, third VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_42 WHERE skip = \"eve muirhead\" AND third = \"kerry barr\""
} |
Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)? | CREATE TABLE table_name_78 (second VARCHAR, lead VARCHAR) | {
"SQL_Query": "SELECT second FROM table_name_78 WHERE lead = \"sarah macintyre (jr) anne laird (w)\""
} |
What is the skip that has a third of Anna Sloan in season 2012-13? | CREATE TABLE table_name_55 (skip VARCHAR, third VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT skip FROM table_name_55 WHERE third = \"anna sloan\" AND season = \"2012-13\""
} |
What is the lead with a second of Vicki Adams and a third of Anna Sloan? | CREATE TABLE table_name_74 (lead VARCHAR, second VARCHAR, third VARCHAR) | {
"SQL_Query": "SELECT lead FROM table_name_74 WHERE second = \"vicki adams\" AND third = \"anna sloan\""
} |
Who is the second where the third of Kelly Wood (e) Anna Sloan (Jr)? | CREATE TABLE table_name_80 (second VARCHAR, third VARCHAR) | {
"SQL_Query": "SELECT second FROM table_name_80 WHERE third = \"kelly wood (e) anna sloan (jr)\""
} |
What is Date, when Game is "65"? | CREATE TABLE table_name_6 (date VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_6 WHERE game = 65"
} |
What is High Rebounds, when Date is "March 12"? | CREATE TABLE table_name_8 (high_rebounds VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_name_8 WHERE date = \"march 12\""
} |
What is High Rebounds, when Date is "March 13"? | CREATE TABLE table_name_93 (high_rebounds VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_name_93 WHERE date = \"march 13\""
} |
What is Record, when Location Attendance is "TD Banknorth Garden 18,624"? | CREATE TABLE table_name_17 (record VARCHAR, location_attendance VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_17 WHERE location_attendance = \"td banknorth garden 18,624\""
} |
What is Team, when Game is "59"? | CREATE TABLE table_name_25 (team VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_25 WHERE game = 59"
} |
What is the Score when the Away Team is Torquay United? | CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_12 WHERE away_team = \"torquay united\""
} |
Which Away Team has a Tie no of replay and a Home Team of Chesterfield? | CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_55 WHERE tie_no = \"replay\" AND home_team = \"chesterfield\""
} |
What is the Away Team when the Home Team is Torquay United and the Attendence is 6 December 1997? | CREATE TABLE table_name_48 (away_team VARCHAR, attendance VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_48 WHERE attendance = \"6 december 1997\" AND home_team = \"torquay united\""
} |
What is the Chassis of the Honda Engine with a Motorola sponsor? | CREATE TABLE table_name_47 (chassis VARCHAR, engine VARCHAR, sponsor VARCHAR) | {
"SQL_Query": "SELECT chassis FROM table_name_47 WHERE engine = \"honda\" AND sponsor = \"motorola\""
} |
What is the engine of the goodyear tire and Herdez as a sponsor? | CREATE TABLE table_name_16 (engine VARCHAR, tire VARCHAR, sponsor VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_16 WHERE tire = \"goodyear\" AND sponsor = \"herdez\""
} |
What engine does the Tasman Motorsports team have? | CREATE TABLE table_name_63 (engine VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_63 WHERE team = \"tasman motorsports\""
} |
Which Tire has a Sponsor of Duracell? | CREATE TABLE table_name_20 (tire VARCHAR, sponsor VARCHAR) | {
"SQL_Query": "SELECT tire FROM table_name_20 WHERE sponsor = \"duracell\""
} |
Which team has Firestone Tires a Reynard 95i Chassis and is sponsored by Motorola? | CREATE TABLE table_name_48 (team VARCHAR, sponsor VARCHAR, tire VARCHAR, chassis VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_48 WHERE tire = \"firestone\" AND chassis = \"reynard 95i\" AND sponsor = \"motorola\""
} |
What is the highest # Of Constituency Votes, when Election is 2005? | CREATE TABLE table_name_22 (_number_of_constituency_votes INTEGER, election VARCHAR) | {
"SQL_Query": "SELECT MAX(_number_of_constituency_votes) FROM table_name_22 WHERE election = 2005"
} |
What is the highest # Of Constituency Votes, when Election is before 1976, when Leader is Eisaku Satō, and when # Of Candidates is less than 328? | CREATE TABLE table_name_18 (_number_of_constituency_votes INTEGER, _number_of_candidates VARCHAR, election VARCHAR, leader VARCHAR) | {
"SQL_Query": "SELECT MAX(_number_of_constituency_votes) FROM table_name_18 WHERE election < 1976 AND leader = \"eisaku satō\" AND _number_of_candidates < 328"
} |
What was the overall draft pick of the player who was a db and attended college in iowa? | CREATE TABLE table_name_82 (overall VARCHAR, college VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT overall FROM table_name_82 WHERE college = \"iowa\" AND position = \"db\""
} |
What number pick was the player drafted in round 3 at #28 overall? | CREATE TABLE table_name_51 (pick INTEGER, overall VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT AVG(pick) FROM table_name_51 WHERE overall < 28 AND round = 3"
} |
What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7? | CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR) | {
"SQL_Query": "SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = \"00 0,228\" AND management_and_support > 1 OFFSET 7"
} |
Which permanent account has registration of invite-only and userpics free of unknown? | CREATE TABLE table_name_46 (permanent_account VARCHAR, userpics_free VARCHAR, registration VARCHAR) | {
"SQL_Query": "SELECT permanent_account FROM table_name_46 WHERE userpics_free = \"unknown\" AND registration = \"invite-only\""
} |
What is the year began for the site with free userpics cost of $1 and a userpics paid value of N/A? | CREATE TABLE table_name_92 (year_began VARCHAR, userpics_paid VARCHAR, userpics_free VARCHAR) | {
"SQL_Query": "SELECT year_began FROM table_name_92 WHERE userpics_paid = \"n/a\" AND userpics_free = \"1\""
} |
Which Week has a Tournament of monte carlo? | CREATE TABLE table_name_18 (week VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_18 WHERE tournament = \"monte carlo\""
} |
Which Winner and score has a Finalist of aaron krickstein? | CREATE TABLE table_name_70 (winner_and_score VARCHAR, finalist VARCHAR) | {
"SQL_Query": "SELECT winner_and_score FROM table_name_70 WHERE finalist = \"aaron krickstein\""
} |
Which Semifinalists have a Surface of hard, and a Winner and score of pete sampras 6–3, 3–6, 6–3? | CREATE TABLE table_name_95 (semifinalists VARCHAR, surface VARCHAR, winner_and_score VARCHAR) | {
"SQL_Query": "SELECT semifinalists FROM table_name_95 WHERE surface = \"hard\" AND winner_and_score = \"pete sampras 6–3, 3–6, 6–3\""
} |
Which Finalist has a Winner and score of boris becker 7–6(3), 6–3, 3–6, 6–3? | CREATE TABLE table_name_86 (finalist VARCHAR, winner_and_score VARCHAR) | {
"SQL_Query": "SELECT finalist FROM table_name_86 WHERE winner_and_score = \"boris becker 7–6(3), 6–3, 3–6, 6–3\""
} |
Which Semifinalists have a Finalist of andrei chesnokov? | CREATE TABLE table_name_82 (semifinalists VARCHAR, finalist VARCHAR) | {
"SQL_Query": "SELECT semifinalists FROM table_name_82 WHERE finalist = \"andrei chesnokov\""
} |
Which Surface has Semifinalists of wally masur malivai washington? | CREATE TABLE table_name_92 (surface VARCHAR, semifinalists VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_92 WHERE semifinalists = \"wally masur malivai washington\""
} |
What place had a score of 73-69-68=210? | CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_86 WHERE score = 73 - 69 - 68 = 210"
} |
What country is Gary Player from in T9 place? | CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_38 WHERE place = \"t9\" AND player = \"gary player\""
} |
What's the score of New Zealand? | CREATE TABLE table_name_3 (score VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_3 WHERE country = \"new zealand\""
} |
What player has a score of 67-70-77=214? | CREATE TABLE table_name_30 (player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_30 WHERE score = 67 - 70 - 77 = 214"
} |
What country has a finish of 59? | CREATE TABLE table_name_34 (country VARCHAR, finish VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_34 WHERE finish = \"59\""
} |
What is the To Par when the finish was t16 and the player was Julius Boros? | CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_56 WHERE finish = \"t16\" AND player = \"julius boros\""
} |
What was the finish for Billy Casper? | CREATE TABLE table_name_59 (finish VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT finish FROM table_name_59 WHERE player = \"billy casper\""
} |
What is the 1st run that is down hill less than 46, and 84.45 points? | CREATE TABLE table_name_95 (downhill VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT 1 AS st_run FROM table_name_95 WHERE downhill < 46 AND points = \"84.45\""
} |
What away team score has hawthorn as the home team? | CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_84 WHERE home_team = \"hawthorn\""
} |
What is the make of the vehicle for driver Hisashi Wada? | CREATE TABLE table_name_24 (make VARCHAR, drivers VARCHAR) | {
"SQL_Query": "SELECT make FROM table_name_24 WHERE drivers = \"hisashi wada\""
} |
In what rounds was the featured team of Avanzza Rosso? | CREATE TABLE table_name_51 (rounds VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT rounds FROM table_name_51 WHERE team = \"avanzza rosso\""
} |
In what rounds was the featured driver Tomonobu Fujii with a Tyre of Y? | CREATE TABLE table_name_59 (rounds VARCHAR, tyre VARCHAR, drivers VARCHAR) | {
"SQL_Query": "SELECT rounds FROM table_name_59 WHERE tyre = \"y\" AND drivers = \"tomonobu fujii\""
} |
Who is the driver with a tyre of k for Avanzza Rosso? | CREATE TABLE table_name_61 (drivers VARCHAR, tyre VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT drivers FROM table_name_61 WHERE tyre = \"k\" AND team = \"avanzza rosso\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.