training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_11 (score VARCHAR, competition_round VARCHAR, date VARCHAR)
###human: What is the score of the copa libertadores group 3 competition round on 2 February 1994?
###assistant: SELECT score FROM table_name_11 WHERE competition_round = "copa libertadores group 3" AND date = "2 february 1994" |
###context:CREATE TABLE table_name_78 (score VARCHAR, date VARCHAR, competition_round VARCHAR, away_team VARCHAR)
###human: What is the score of the copa libertadores group 4 competition round on 14 March 1972 with universitario as the away team?
###assistant: SELECT score FROM table_name_78 WHERE competition_round = "copa libertadores group 4" AND away_team = "universitario" AND date = "14 march 1972" |
###context:CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR, season VARCHAR)
###human: What is the venue of season 1983, which had alianza lima as the home team?
###assistant: SELECT venue FROM table_name_7 WHERE home_team = "alianza lima" AND season = 1983 |
###context:CREATE TABLE table_name_73 (score VARCHAR, venue VARCHAR, date VARCHAR)
###human: What is the score of the match on 3 March 1988 at the estadio nacional?
###assistant: SELECT score FROM table_name_73 WHERE venue = "estadio nacional" AND date = "3 march 1988" |
###context:CREATE TABLE table_name_63 (points INTEGER, date VARCHAR)
###human: What were the Points on December 13?
###assistant: SELECT MAX(points) FROM table_name_63 WHERE date = "december 13" |
###context:CREATE TABLE table_name_74 (established VARCHAR, institution VARCHAR)
###human: What is the year established of North Jersey Phoenix?
###assistant: SELECT established FROM table_name_74 WHERE institution = "north jersey phoenix" |
###context:CREATE TABLE table_name_8 (nickname VARCHAR, established VARCHAR)
###human: What is the nickname of the school established in 2009?
###assistant: SELECT nickname FROM table_name_8 WHERE established = 2009 |
###context:CREATE TABLE table_name_27 (location VARCHAR, established VARCHAR)
###human: What is the location of the school established in 2013?
###assistant: SELECT location FROM table_name_27 WHERE established = 2013 |
###context:CREATE TABLE table_name_62 (nickname VARCHAR, institution VARCHAR)
###human: What is the nickname of Columbia University?
###assistant: SELECT nickname FROM table_name_62 WHERE institution = "columbia university" |
###context:CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)
###human: The match against Valentijn Overeem had what method?
###assistant: SELECT method FROM table_name_11 WHERE opponent = "valentijn overeem" |
###context:CREATE TABLE table_name_32 (location VARCHAR, res VARCHAR, method VARCHAR)
###human: Where was the match held when the result was win, and tko as the method?
###assistant: SELECT location FROM table_name_32 WHERE res = "win" AND method = "tko" |
###context:CREATE TABLE table_name_92 (round VARCHAR, event VARCHAR)
###human: What round did the match go to when the event was Bars - Moscow vs St. Petersburg?
###assistant: SELECT round FROM table_name_92 WHERE event = "bars - moscow vs st. petersburg" |
###context:CREATE TABLE table_name_73 (record VARCHAR, method VARCHAR)
###human: With a method of tko (kick) what is the record of the match?
###assistant: SELECT record FROM table_name_73 WHERE method = "tko (kick)" |
###context:CREATE TABLE table_name_24 (round VARCHAR, method VARCHAR)
###human: What round did the match go to when tko (cut) was the method?
###assistant: SELECT round FROM table_name_24 WHERE method = "tko (cut)" |
###context:CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR)
###human: what is the place when the score is 68-72-77-74=291?
###assistant: SELECT place FROM table_name_81 WHERE score = 68 - 72 - 77 - 74 = 291 |
###context:CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, score VARCHAR)
###human: how many times is the country united states and the score 72-71-73-73=289?
###assistant: SELECT COUNT(to_par) FROM table_name_93 WHERE country = "united states" AND score = 72 - 71 - 73 - 73 = 289 |
###context:CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###human: Who is the player when the to par is more than 11 and the score is 71-71-71-79=292?
###assistant: SELECT player FROM table_name_32 WHERE to_par > 11 AND score = 71 - 71 - 71 - 79 = 292 |
###context:CREATE TABLE table_name_7 (country VARCHAR, player VARCHAR)
###human: what is the country when the player is bill nary?
###assistant: SELECT country FROM table_name_7 WHERE player = "bill nary" |
###context:CREATE TABLE table_name_4 (score VARCHAR, country VARCHAR, player VARCHAR)
###human: what is the score when the country is united states and the player is george fazio?
###assistant: SELECT score FROM table_name_4 WHERE country = "united states" AND player = "george fazio" |
###context:CREATE TABLE table_name_96 (death VARCHAR, birth VARCHAR)
###human: WHAT IS THE DEATH WHEN BIRTH DATE IS 2 AUGUST 1424?
###assistant: SELECT death FROM table_name_96 WHERE birth = "2 august 1424" |
###context:CREATE TABLE table_name_91 (ceased_to_be_duke_of_girona VARCHAR, heir_of VARCHAR)
###human: WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV?
###assistant: SELECT ceased_to_be_duke_of_girona FROM table_name_91 WHERE heir_of = "peter iv" |
###context:CREATE TABLE table_name_22 (birth VARCHAR, ceased_to_be_duke_of_girona VARCHAR)
###human: WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582?
###assistant: SELECT birth FROM table_name_22 WHERE ceased_to_be_duke_of_girona = "21 november 1582" |
###context:CREATE TABLE table_name_2 (birth VARCHAR, death VARCHAR)
###human: WHAT IS THE BIRTH DATE WITH A DEATH OF OCTOBER 1389?
###assistant: SELECT birth FROM table_name_2 WHERE death = "october 1389" |
###context:CREATE TABLE table_name_54 (laps VARCHAR, rider VARCHAR)
###human: What is the total number of Laps, when Ride is Aleix Espargaro?
###assistant: SELECT COUNT(laps) FROM table_name_54 WHERE rider = "aleix espargaro" |
###context:CREATE TABLE table_name_72 (county VARCHAR, name VARCHAR)
###human: What is the County of Howard Street Tunnel?
###assistant: SELECT county FROM table_name_72 WHERE name = "howard street tunnel" |
###context:CREATE TABLE table_name_58 (location VARCHAR, built VARCHAR)
###human: What is the Location of the Bridge Built in 1869?
###assistant: SELECT location FROM table_name_58 WHERE built = "1869" |
###context:CREATE TABLE table_name_77 (listed VARCHAR, county VARCHAR, name VARCHAR)
###human: What is the date Listed of the B & O Bridge in Washington?
###assistant: SELECT listed FROM table_name_77 WHERE county = "washington" AND name = "b & o bridge" |
###context:CREATE TABLE table_name_46 (listed VARCHAR, built VARCHAR)
###human: What is the date Listed of the Bridge Built CA.1876?
###assistant: SELECT listed FROM table_name_46 WHERE built = "ca.1876" |
###context:CREATE TABLE table_name_79 (listed VARCHAR, built VARCHAR)
###human: What is the date Listed of the Bridge Built in 1864?
###assistant: SELECT listed FROM table_name_79 WHERE built = "1864" |
###context:CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR)
###human: What is the total number of Draw(s), when Televotes is greater than 1761, when Song is "Ils Sont LΓ ", and when Place is less than 2?
###assistant: SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = "ils sont lΓ " AND place < 2 |
###context:CREATE TABLE table_name_50 (place INTEGER, televotes VARCHAR)
###human: What is the lowest Place, when Televotes is 15424?
###assistant: SELECT MIN(place) FROM table_name_50 WHERE televotes = 15424 |
###context:CREATE TABLE table_name_14 (place INTEGER, song VARCHAR)
###human: What is the average Place, when Song is "Dis Oui"?
###assistant: SELECT AVG(place) FROM table_name_14 WHERE song = "dis oui" |
###context:CREATE TABLE table_name_52 (to_club VARCHAR, transfer_fee VARCHAR, pos VARCHAR)
###human: What club received a DF player for free?
###assistant: SELECT to_club FROM table_name_52 WHERE transfer_fee = "free" AND pos = "df" |
###context:CREATE TABLE table_name_99 (player VARCHAR, to_club VARCHAR)
###human: Which player was transferred to Reggina?
###assistant: SELECT player FROM table_name_99 WHERE to_club = "reggina" |
###context:CREATE TABLE table_name_19 (exit_date VARCHAR, transfer_fee VARCHAR, to_club VARCHAR)
###human: What is the exit date of the player transferred to Reggina for free?
###assistant: SELECT exit_date FROM table_name_19 WHERE transfer_fee = "free" AND to_club = "reggina" |
###context:CREATE TABLE table_name_23 (position INTEGER, country VARCHAR, pilot VARCHAR)
###human: What is the lowest position of pilot mario kiessling from Germany?
###assistant: SELECT MIN(position) FROM table_name_23 WHERE country = "germany" AND pilot = "mario kiessling" |
###context:CREATE TABLE table_name_31 (position INTEGER, points VARCHAR, pilot VARCHAR)
###human: What is the average position of pilot petr krejcirik, who has less than 11 points?
###assistant: SELECT AVG(position) FROM table_name_31 WHERE points < 11 AND pilot = "petr krejcirik" |
###context:CREATE TABLE table_name_43 (career_sr VARCHAR)
###human: What is the career SR with a 1r in 1985?
###assistant: SELECT career_sr FROM table_name_43 WHERE 1985 = "1r" |
###context:CREATE TABLE table_name_81 (tournament VARCHAR)
###human: What tournament has a 3r in 1983?
###assistant: SELECT tournament FROM table_name_81 WHERE 1983 = "3r" |
###context:CREATE TABLE table_name_48 (Id VARCHAR)
###human: What is the 1980 value with a 1r in 1984 and a 1r in 1981?
###assistant: SELECT 1980 FROM table_name_48 WHERE 1984 = "1r" AND 1981 = "1r" |
###context:CREATE TABLE table_name_52 (finish VARCHAR, country VARCHAR)
###human: What is the finish of Australia?
###assistant: SELECT finish FROM table_name_52 WHERE country = "australia" |
###context:CREATE TABLE table_name_63 (total VARCHAR, to_par VARCHAR)
###human: What is the total with a +4 to par?
###assistant: SELECT total FROM table_name_63 WHERE to_par = "+4" |
###context:CREATE TABLE table_name_57 (country VARCHAR, to_par VARCHAR)
###human: What country has a +3 to par?
###assistant: SELECT country FROM table_name_57 WHERE to_par = "+3" |
###context:CREATE TABLE table_name_56 (year INTEGER, artist VARCHAR, rank VARCHAR)
###human: What was the first year that the artist of every little thing ranked lower than 10?
###assistant: SELECT MIN(year) FROM table_name_56 WHERE artist = "every little thing" AND rank < 10 |
###context:CREATE TABLE table_name_8 (championship VARCHAR, runner_s__up VARCHAR, margin VARCHAR)
###human: Which Championship was louise suggs the runner-up by 3 strokes?
###assistant: SELECT championship FROM table_name_8 WHERE runner_s__up = "louise suggs" AND margin = "3 strokes" |
###context:CREATE TABLE table_name_49 (year INTEGER, runner_s__up VARCHAR)
###human: When was the most recent year that kathy whitworth was the runner-up?
###assistant: SELECT MAX(year) FROM table_name_49 WHERE runner_s__up = "kathy whitworth" |
###context:CREATE TABLE table_name_75 (winning_score VARCHAR, championship VARCHAR, margin VARCHAR)
###human: What was the winning score in the u.s. women's open that was won by 5 strokes?
###assistant: SELECT winning_score FROM table_name_75 WHERE championship = "u.s. women's open" AND margin = "5 strokes" |
###context:CREATE TABLE table_name_86 (record VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)
###human: What is Record, when High Rebounds is "Marcus Camby (15)", and when High Assists is "Baron Davis (7)"?
###assistant: SELECT record FROM table_name_86 WHERE high_rebounds = "marcus camby (15)" AND high_assists = "baron davis (7)" |
###context:CREATE TABLE table_name_48 (game VARCHAR, team VARCHAR)
###human: What is Game, when Team is "Philadelphia"
###assistant: SELECT game FROM table_name_48 WHERE team = "philadelphia" |
###context:CREATE TABLE table_name_83 (high_assists VARCHAR, team VARCHAR)
###human: What is High Assists, when Team is "@ Milwaukee"?
###assistant: SELECT high_assists FROM table_name_83 WHERE team = "@ milwaukee" |
###context:CREATE TABLE table_name_89 (tie_no INTEGER, away_team VARCHAR)
###human: What was the tie number for the round against visiting opponent Chelsea?
###assistant: SELECT SUM(tie_no) FROM table_name_89 WHERE away_team = "chelsea" |
###context:CREATE TABLE table_name_53 (tie_no VARCHAR, away_team VARCHAR)
###human: What was the tie number for the round against visiting opponent Newcastle United?
###assistant: SELECT tie_no FROM table_name_53 WHERE away_team = "newcastle united" |
###context:CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR)
###human: What date was Millwall the home team?
###assistant: SELECT date FROM table_name_29 WHERE home_team = "millwall" |
###context:CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)
###human: What date was Leeds United the away team?
###assistant: SELECT date FROM table_name_36 WHERE away_team = "leeds united" |
###context:CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)
###human: What was the score when Bolton Wanderers were the away team?
###assistant: SELECT score FROM table_name_38 WHERE away_team = "bolton wanderers" |
###context:CREATE TABLE table_name_47 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)
###human: What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1?
###assistant: SELECT SUM(events) FROM table_name_47 WHERE tournament = "u.s. open" AND top_25 < 1 |
###context:CREATE TABLE table_name_40 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
###human: How many total wins have 3 as the Top-35 and less than 5 cuts made?
###assistant: SELECT SUM(wins) FROM table_name_40 WHERE top_25 = 3 AND cuts_made < 5 |
###context:CREATE TABLE table_name_32 (top_10 INTEGER, tournament VARCHAR, wins VARCHAR)
###human: What is the minimum Top-10 when the Open Championship was the tournament and the wins greater than 0?
###assistant: SELECT MIN(top_10) FROM table_name_32 WHERE tournament = "the open championship" AND wins > 0 |
###context:CREATE TABLE table_name_43 (top_10 INTEGER, wins INTEGER)
###human: With wins greater than 0 what is the minimum Top-10?
###assistant: SELECT MIN(top_10) FROM table_name_43 WHERE wins > 0 |
###context:CREATE TABLE table_name_23 (top_25 INTEGER, events INTEGER)
###human: What is the total Top-25 when the events were less than 0?
###assistant: SELECT SUM(top_25) FROM table_name_23 WHERE events < 0 |
###context:CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR, score VARCHAR)
###human: Who is the player from the United States with a score of 71-75=146?
###assistant: SELECT player FROM table_name_24 WHERE country = "united states" AND score = 71 - 75 = 146 |
###context:CREATE TABLE table_name_56 (player VARCHAR, score VARCHAR)
###human: Who is the player with a 77-68=145 score?
###assistant: SELECT player FROM table_name_56 WHERE score = 77 - 68 = 145 |
###context:CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)
###human: What is the country with a 76-68=144 score?
###assistant: SELECT country FROM table_name_21 WHERE score = 76 - 68 = 144 |
###context:CREATE TABLE table_name_68 (player VARCHAR, place VARCHAR, score VARCHAR)
###human: Who is the player in t8 place with a 75-71=146 score?
###assistant: SELECT player FROM table_name_68 WHERE place = "t8" AND score = 75 - 71 = 146 |
###context:CREATE TABLE table_name_50 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)
###human: What is the to par of the player from the United States with a place of t1 and a 76-68=144 score?
###assistant: SELECT to_par FROM table_name_50 WHERE country = "united states" AND place = "t1" AND score = 76 - 68 = 144 |
###context:CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR)
###human: What is the country of player lee trevino, who has a to par of +2?
###assistant: SELECT country FROM table_name_32 WHERE to_par = "+2" AND player = "lee trevino" |
###context:CREATE TABLE table_name_43 (pilot_s_ VARCHAR, location VARCHAR)
###human: Who was the pilot at lake dumbleyung?
###assistant: SELECT pilot_s_ FROM table_name_43 WHERE location = "lake dumbleyung" |
###context:CREATE TABLE table_name_87 (speed VARCHAR, location VARCHAR, pilot_s_ VARCHAR)
###human: How fast was the speed during the record set at Coniston Water that was piloted by Malcolm Campbell?
###assistant: SELECT speed FROM table_name_87 WHERE location = "coniston water" AND pilot_s_ = "malcolm campbell" |
###context:CREATE TABLE table_name_36 (home VARCHAR, away VARCHAR)
###human: Which Home has an Away of 1β1?
###assistant: SELECT home FROM table_name_36 WHERE away = "1β1" |
###context:CREATE TABLE table_name_99 (away VARCHAR, season VARCHAR)
###human: Which Away has a Season of 2007β08?
###assistant: SELECT away FROM table_name_99 WHERE season = "2007β08" |
###context:CREATE TABLE table_name_94 (season VARCHAR, away VARCHAR)
###human: Which Season has an Away of 1β2?
###assistant: SELECT season FROM table_name_94 WHERE away = "1β2" |
###context:CREATE TABLE table_name_41 (away VARCHAR, home VARCHAR)
###human: Which Away has a Home of 1β0?
###assistant: SELECT away FROM table_name_41 WHERE home = "1β0" |
###context:CREATE TABLE table_name_77 (season VARCHAR, league VARCHAR)
###human: Which Season has a League of bezirksliga?
###assistant: SELECT season FROM table_name_77 WHERE league = "bezirksliga" |
###context:CREATE TABLE table_name_24 (season VARCHAR, home VARCHAR)
###human: Which Season has a Home of 0β1?
###assistant: SELECT season FROM table_name_24 WHERE home = "0β1" |
###context:CREATE TABLE table_name_16 (venue VARCHAR, date VARCHAR)
###human: What was the Venue in 2003?
###assistant: SELECT venue FROM table_name_16 WHERE date = "2003" |
###context:CREATE TABLE table_name_27 (competition VARCHAR, score VARCHAR)
###human: What Competition had a Score of 3β3?
###assistant: SELECT competition FROM table_name_27 WHERE score = "3β3" |
###context:CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR)
###human: Name the lowest Round with Opponent of rolando delgado?
###assistant: SELECT MIN(round) FROM table_name_18 WHERE opponent = "rolando delgado" |
###context:CREATE TABLE table_name_73 (round VARCHAR, location VARCHAR)
###human: Name the total number of Round in liverpool , england?
###assistant: SELECT COUNT(round) FROM table_name_73 WHERE location = "liverpool , england" |
###context:CREATE TABLE table_name_62 (event VARCHAR, location VARCHAR)
###human: Which Event is in chandigarh , india?
###assistant: SELECT event FROM table_name_62 WHERE location = "chandigarh , india" |
###context:CREATE TABLE table_name_58 (player VARCHAR, year VARCHAR, college_high_school_club VARCHAR)
###human: Who is the player with a year later than 2007 and the college/high school/club of Arizona?
###assistant: SELECT player FROM table_name_58 WHERE year > 2007 AND college_high_school_club = "arizona" |
###context:CREATE TABLE table_name_89 (year INTEGER, position VARCHAR, player VARCHAR)
###human: What is the earliest year of c position player gary bergen?
###assistant: SELECT MIN(year) FROM table_name_89 WHERE position = "c" AND player = "gary bergen" |
###context:CREATE TABLE table_name_66 (round VARCHAR, player VARCHAR, position VARCHAR, year VARCHAR)
###human: What round is sf/sg player sly williams from a year after 1965 from?
###assistant: SELECT round FROM table_name_66 WHERE position = "sf/sg" AND year > 1965 AND player = "sly williams" |
###context:CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)
###human: What is the round of the pf position player from 1996 and the college/high school/club mississippi state?
###assistant: SELECT round FROM table_name_37 WHERE position = "pf" AND year = 1996 AND college_high_school_club = "mississippi state" |
###context:CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR)
###human: Which Score has a Visitor of montreal canadiens, and Points of 5?
###assistant: SELECT score FROM table_name_93 WHERE visitor = "montreal canadiens" AND points = 5 |
###context:CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR)
###human: Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price?
###assistant: SELECT date FROM table_name_99 WHERE home = "montreal canadiens" AND points > 9 AND decision = "price" |
###context:CREATE TABLE table_name_97 (score VARCHAR, home_team VARCHAR)
###human: What is the score for the home team Notts County?
###assistant: SELECT score FROM table_name_97 WHERE home_team = "notts county" |
###context:CREATE TABLE table_name_62 (episode VARCHAR, share VARCHAR, viewers__millions_ VARCHAR, weekly_rank VARCHAR)
###human: Which Episode has a Viewers (millions) larger than 11.26, a Weekly Rank of #8, and a Share of 12?
###assistant: SELECT episode FROM table_name_62 WHERE viewers__millions_ > 11.26 AND weekly_rank = "#8" AND share = 12 |
###context:CREATE TABLE table_name_3 (Id VARCHAR)
###human: What is the 2012 with a mini in 2009?
###assistant: SELECT 2012 FROM table_name_3 WHERE 2009 = "mini" |
###context:CREATE TABLE table_name_5 (Id VARCHAR)
###human: What is the 2013 with virgin in 2009?
###assistant: SELECT 2013 FROM table_name_5 WHERE 2009 = "virgin" |
###context:CREATE TABLE table_name_95 (rank INTEGER)
###human: What is the highest rank of the 2009 xbox?
###assistant: SELECT MAX(rank) FROM table_name_95 WHERE 2009 = "xbox" |
###context:CREATE TABLE table_name_72 (rank VARCHAR)
###human: What is the 2010 with a rank higher than 15 and a 2011 maserati?
###assistant: SELECT 2010 FROM table_name_72 WHERE rank > 15 AND 2011 = "maserati" |
###context:CREATE TABLE table_name_70 (record VARCHAR, points VARCHAR, visitor VARCHAR)
###human: What is the record with 23 points and a visitor of Chicago?
###assistant: SELECT record FROM table_name_70 WHERE points = 23 AND visitor = "chicago" |
###context:CREATE TABLE table_name_84 (tied VARCHAR)
###human: What venue had a tie?
###assistant: SELECT tied FROM table_name_84 WHERE "venue" = "venue" |
###context:CREATE TABLE table_name_59 (score VARCHAR, place VARCHAR, country VARCHAR)
###human: What was the score in Spain T3?
###assistant: SELECT score FROM table_name_59 WHERE place = "t3" AND country = "spain" |
###context:CREATE TABLE table_name_53 (score VARCHAR, place VARCHAR, player VARCHAR)
###human: What score did Lee Trevino get in T1?
###assistant: SELECT score FROM table_name_53 WHERE place = "t1" AND player = "lee trevino" |
###context:CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR, score VARCHAR)
###human: Which player had the score 71-72=143 in Spain?
###assistant: SELECT player FROM table_name_45 WHERE score = 71 - 72 = 143 AND country = "spain" |
###context:CREATE TABLE table_name_42 (score VARCHAR, to_par VARCHAR, player VARCHAR)
###human: When curtis strange had a to par +1, what was his score?
###assistant: SELECT score FROM table_name_42 WHERE to_par = "+1" AND player = "curtis strange" |
###context:CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR)
###human: Who is the player for Zimbabwe?
###assistant: SELECT player FROM table_name_45 WHERE country = "zimbabwe" |
###context:CREATE TABLE table_name_28 (country VARCHAR, player VARCHAR)
###human: What country is Greg Norman from?
###assistant: SELECT country FROM table_name_28 WHERE player = "greg norman" |
###context:CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)
###human: What country is Bob Tway from?
###assistant: SELECT country FROM table_name_93 WHERE player = "bob tway" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.