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