text stringlengths 114 1.06k |
|---|
### question: What is the Score of the Round with Player Aaron Baddeley having a To par of +2? ### answer: SELECT score FROM table_name_61 WHERE to_par = "+2" AND player = "aaron baddeley" ### context: CREATE TABLE table_name_61 (score VARCHAR, to_par VARCHAR, player VARCHAR) |
### question: What is Charlie Wi's To par? ### answer: SELECT to_par FROM table_name_29 WHERE player = "charlie wi" ### context: CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR) |
### question: What is the Country of the T8 Place Player with a Score of 68-74=142? ### answer: SELECT country FROM table_name_99 WHERE place = "t8" AND score = 68 - 74 = 142 ### context: CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR) |
### question: What is the T8 Place Player with a Score of 68-74=142? ### answer: SELECT player FROM table_name_67 WHERE place = "t8" AND score = 68 - 74 = 142 ### context: CREATE TABLE table_name_67 (player VARCHAR, place VARCHAR, score VARCHAR) |
### question: What Country is David Toms from? ### answer: SELECT country FROM table_name_84 WHERE player = "david toms" ### context: CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR) |
### question: What is the To par for Robert Allenby from Australia ### answer: SELECT to_par FROM table_name_6 WHERE country = "australia" AND player = "robert allenby" ### context: CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR) |
### question: When Rocco Mediate of the United States has a To par of +2, what was his score? ### answer: SELECT score FROM table_name_43 WHERE to_par = "+2" AND country = "united states" AND player = "rocco mediate" ### context: CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR... |
### question: What is the score for Greg Norman ### answer: SELECT score FROM table_name_84 WHERE player = "greg norman" ### context: CREATE TABLE table_name_84 (score VARCHAR, player VARCHAR) |
### question: When Rocco Mediate has a To par of +2 and a 69-73=142 score, what is the country listed? ### answer: SELECT country FROM table_name_36 WHERE to_par = "+2" AND score = 69 - 73 = 142 AND player = "rocco mediate" ### context: CREATE TABLE table_name_36 (country VARCHAR, player VARCHAR, to_par VARCHAR, score ... |
### question: What is the country listed that has a place of t4 with a score of 72-70=142? ### answer: SELECT country FROM table_name_85 WHERE place = "t4" AND score = 72 - 70 = 142 ### context: CREATE TABLE table_name_85 (country VARCHAR, place VARCHAR, score VARCHAR) |
### question: What is the Home team of the Kidderminster Harriers Away game? ### answer: SELECT home_team FROM table_name_20 WHERE away_team = "kidderminster harriers" ### context: CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR) |
### question: What is the Date of the Sutton United Home game? ### answer: SELECT date FROM table_name_35 WHERE home_team = "sutton united" ### context: CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR) |
### question: What is the Date of Tie no 35 with a Score of 3–2? ### answer: SELECT date FROM table_name_78 WHERE score = "3–2" AND tie_no = "35" ### context: CREATE TABLE table_name_78 (date VARCHAR, score VARCHAR, tie_no VARCHAR) |
### question: What is the Tie no of the Carlisle United Away game on 17/11/1990 with a Score of 5–0? ### answer: SELECT tie_no FROM table_name_27 WHERE date = "17/11/1990" AND score = "5–0" AND away_team = "carlisle united" ### context: CREATE TABLE table_name_27 (tie_no VARCHAR, away_team VARCHAR, date VARCHAR, score ... |
### question: What is the Home team of Tie no 40? ### answer: SELECT home_team FROM table_name_35 WHERE tie_no = "40" ### context: CREATE TABLE table_name_35 (home_team VARCHAR, tie_no VARCHAR) |
### question: What is the Away team of the Merthyr Tydfil Home game with a Score of 1–1? ### answer: SELECT away_team FROM table_name_46 WHERE score = "1–1" AND home_team = "merthyr tydfil" ### context: CREATE TABLE table_name_46 (away_team VARCHAR, score VARCHAR, home_team VARCHAR) |
### question: What is the lowest Attendance, when Home Team is "Welling United"? ### answer: SELECT MIN(attendance) FROM table_name_26 WHERE home_team = "welling united" ### context: CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR) |
### question: What is Score, when Attendance is "303"? ### answer: SELECT score FROM table_name_14 WHERE attendance = 303 ### context: CREATE TABLE table_name_14 (score VARCHAR, attendance VARCHAR) |
### question: Which place is Andy Bean from the United States? ### answer: SELECT place FROM table_name_50 WHERE country = "united states" AND player = "andy bean" ### context: CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR, player VARCHAR) |
### question: Which United States player has a place of T3? ### answer: SELECT player FROM table_name_3 WHERE country = "united states" AND place = "t3" ### context: CREATE TABLE table_name_3 (player VARCHAR, country VARCHAR, place VARCHAR) |
### question: What country is Lee Trevino from? ### answer: SELECT country FROM table_name_41 WHERE player = "lee trevino" ### context: CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR) |
### question: What is the state that has the 2012 rank of 43? ### answer: SELECT state FROM table_name_98 WHERE rank__2012_ = 43 ### context: CREATE TABLE table_name_98 (state VARCHAR, rank__2012_ VARCHAR) |
### question: What is the highest Year, when Apparatus is "Vault", and when Rank-Final is less than 9? ### answer: SELECT MAX(year) FROM table_name_45 WHERE apparatus = "vault" AND rank_final < 9 ### context: CREATE TABLE table_name_45 (year INTEGER, apparatus VARCHAR, rank_final VARCHAR) |
### question: What is Year, when Competition Description is "U.S. Championships", when Rank-Final is less than 3, and when Apparatus is "All-Around"? ### answer: SELECT year FROM table_name_79 WHERE competition_description = "u.s. championships" AND rank_final < 3 AND apparatus = "all-around" ### context: CREATE TABLE ... |
### question: What is Apparatus, when Rank-Final is greater than 6, and when Competition Description is "U.S. Championships"? ### answer: SELECT apparatus FROM table_name_9 WHERE rank_final > 6 AND competition_description = "u.s. championships" ### context: CREATE TABLE table_name_9 (apparatus VARCHAR, rank_final VARCH... |
### question: What was the first leg home that had a total aggregate of 3-1? ### answer: SELECT home__1st_leg_ FROM table_name_90 WHERE aggregate = "3-1" ### context: CREATE TABLE table_name_90 (home__1st_leg_ VARCHAR, aggregate VARCHAR) |
### question: What was the 1st leg that had a 4-2 aggregate? ### answer: SELECT 1 AS st_leg FROM table_name_33 WHERE aggregate = "4-2" ### context: CREATE TABLE table_name_33 (aggregate VARCHAR) |
### question: What was the 1st leg that had a 1st get home for the Boca Juniors? ### answer: SELECT 1 AS st_leg FROM table_name_82 WHERE home__1st_leg_ = "boca juniors" ### context: CREATE TABLE table_name_82 (home__1st_leg_ VARCHAR) |
### question: What was the 2nd leg that had the Estudiantes La Plata home for the 2nd leg? ### answer: SELECT 2 AS nd_leg FROM table_name_41 WHERE home__2nd_leg_ = "estudiantes la plata" ### context: CREATE TABLE table_name_41 (home__2nd_leg_ VARCHAR) |
### question: Can you tell me the Player that has the Place of t5, and the Score of 73-72-71-75=291? ### answer: SELECT player FROM table_name_33 WHERE place = "t5" AND score = 73 - 72 - 71 - 75 = 291 ### context: CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR, score VARCHAR) |
### question: Can you tell me the average Money ($) that has the To par larger than 14, and the Player of ed dudley? ### answer: SELECT AVG(money___) AS $__ FROM table_name_87 WHERE to_par > 14 AND player = "ed dudley" ### context: CREATE TABLE table_name_87 (money___ INTEGER, to_par VARCHAR, player VARCHAR) |
### question: What is the transfer window for Hleb? ### answer: SELECT transfer_window FROM table_name_69 WHERE name = "hleb" ### context: CREATE TABLE table_name_69 (transfer_window VARCHAR, name VARCHAR) |
### question: What is the lowest ends for Dani Alves? ### answer: SELECT MIN(ends) FROM table_name_49 WHERE name = "dani alves" ### context: CREATE TABLE table_name_49 (ends INTEGER, name VARCHAR) |
### question: What is the name of the person with a type of transfer, and a Transfer fee of €8m + €2m in variables? ### answer: SELECT name FROM table_name_64 WHERE type = "transfer" AND transfer_fee = "€8m + €2m in variables" ### context: CREATE TABLE table_name_64 (name VARCHAR, type VARCHAR, transfer_fee VARCHAR) |
### question: What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"? ### answer: SELECT to_par FROM table_name_98 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open" ### context: CREATE TABLE table_name_98 (to_par VARCHAR, margin_of_victory VARCHA... |
### question: What is Date, when Runner(s)-Up is "Bo-Mee Lee"? ### answer: SELECT date FROM table_name_65 WHERE runner_s__up = "bo-mee lee" ### context: CREATE TABLE table_name_65 (date VARCHAR, runner_s__up VARCHAR) |
### question: What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"? ### answer: SELECT to_par FROM table_name_36 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open" ### context: CREATE TABLE table_name_36 (to_par VARCHAR, margin_of_victory VARCHA... |
### question: What did Steve Stricker score? ### answer: SELECT score FROM table_name_54 WHERE player = "steve stricker" ### context: CREATE TABLE table_name_54 (score VARCHAR, player VARCHAR) |
### question: What is the sum of the number of clubs in seasons before 1992 with more than 3 total wins? ### answer: SELECT SUM(number_of_clubs) FROM table_name_30 WHERE season < 1992 AND total_wins > 3 ### context: CREATE TABLE table_name_30 (number_of_clubs INTEGER, season VARCHAR, total_wins VARCHAR) |
### question: What is the sum of the season with 8 clubs and shanghai as the runners-up? ### answer: SELECT SUM(season) FROM table_name_63 WHERE number_of_clubs = 8 AND runners_up = "shanghai" ### context: CREATE TABLE table_name_63 (season INTEGER, number_of_clubs VARCHAR, runners_up VARCHAR) |
### question: Who is third-place with less than 5 total wins with china b as the winners? ### answer: SELECT third_place FROM table_name_89 WHERE total_wins < 5 AND winners = "china b" ### context: CREATE TABLE table_name_89 (third_place VARCHAR, total_wins VARCHAR, winners VARCHAR) |
### question: What is the lowest total number of wins in a season before 1989 with tianjin as the runners-up and more than 8 clubs? ### answer: SELECT MIN(total_wins) FROM table_name_92 WHERE season < 1989 AND runners_up = "tianjin" AND number_of_clubs > 8 ### context: CREATE TABLE table_name_92 (total_wins INTEGER, nu... |
### question: What was the result for Rank 2 on December 6, 1969? ### answer: SELECT result FROM table_name_23 WHERE rank_number = "2" AND date = "december 6, 1969" ### context: CREATE TABLE table_name_23 (result VARCHAR, rank_number VARCHAR, date VARCHAR) |
### question: What was the rank # for opponent AT Baylor? ### answer: SELECT rank_number FROM table_name_27 WHERE opponent_number = "at baylor" ### context: CREATE TABLE table_name_27 (rank_number VARCHAR, opponent_number VARCHAR) |
### question: What is the result for opponent TCU? ### answer: SELECT result FROM table_name_89 WHERE opponent_number = "tcu" ### context: CREATE TABLE table_name_89 (result VARCHAR, opponent_number VARCHAR) |
### question: What date was the attendance 82,500? ### answer: SELECT date FROM table_name_81 WHERE attendance = "82,500" ### context: CREATE TABLE table_name_81 (date VARCHAR, attendance VARCHAR) |
### question: Which League Cup has a Total smaller than 1? ### answer: SELECT SUM(league_cup) FROM table_name_3 WHERE total < 1 ### context: CREATE TABLE table_name_3 (league_cup INTEGER, total INTEGER) |
### question: Which Total has a League Cup smaller than 0? ### answer: SELECT MAX(total) FROM table_name_69 WHERE league_cup < 0 ### context: CREATE TABLE table_name_69 (total INTEGER, league_cup INTEGER) |
### question: Which Championship has a League Cup larger than 0, and a FA Cup larger than 0? ### answer: SELECT MIN(championship) FROM table_name_68 WHERE league_cup > 0 AND fa_cup > 0 ### context: CREATE TABLE table_name_68 (championship INTEGER, league_cup VARCHAR, fa_cup VARCHAR) |
### question: Which Championship has a League Cup smaller than 0? ### answer: SELECT AVG(championship) FROM table_name_14 WHERE league_cup < 0 ### context: CREATE TABLE table_name_14 (championship INTEGER, league_cup INTEGER) |
### question: Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007? ### answer: SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = "24 january 2007" ### context: CREATE TABLE table_name_3 (age__as_of_1_february_2014_ VARCHAR, rank VARCHAR, de... |
### question: Which Death date has a Rank smaller than 49, and an Age (as of 1 February 2014) of 112 years, 172 days? ### answer: SELECT death_date FROM table_name_65 WHERE rank < 49 AND age__as_of_1_february_2014_ = "112 years, 172 days" ### context: CREATE TABLE table_name_65 (death_date VARCHAR, rank VARCHAR, age__a... |
### question: Which Death date has a Place of death or residence of united states, and an Age (as of 1 February 2014) of 111 years, 61 days? ### answer: SELECT death_date FROM table_name_49 WHERE place_of_death_or_residence = "united states" AND age__as_of_1_february_2014_ = "111 years, 61 days" ### context: CREATE TAB... |
### question: What was the record on Feb 25? ### answer: SELECT record FROM table_name_83 WHERE date = "feb 25" ### context: CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR) |
### question: What was the streak when the opponent was @ new jersey nets? ### answer: SELECT streak FROM table_name_26 WHERE opponent = "@ new jersey nets" ### context: CREATE TABLE table_name_26 (streak VARCHAR, opponent VARCHAR) |
### question: What year was the competition vitry-sur-seine humarathon? ### answer: SELECT AVG(year) FROM table_name_41 WHERE competition = "vitry-sur-seine humarathon" ### context: CREATE TABLE table_name_41 (year INTEGER, competition VARCHAR) |
### question: Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses? ### answer: SELECT MAX(goal_difference) FROM table_name_77 WHERE points = 28 AND club = "cd cartagena" AND losses > 15 ### context: CREATE TABLE table_name_77 (goal_difference INTEGER, losses VARCHAR, points VARCHAR, clu... |
### question: How much Goal Difference has less than 9 Losses, and 8 Draws, and more than 40 points? ### answer: SELECT SUM(goal_difference) FROM table_name_22 WHERE losses < 9 AND draws = 8 AND points > 40 ### context: CREATE TABLE table_name_22 (goal_difference INTEGER, points VARCHAR, losses VARCHAR, draws VARCHAR) |
### question: How many points have more than 14 wins, a goal difference of 14, and more than 6 draws? ### answer: SELECT COUNT(points) FROM table_name_13 WHERE wins > 14 AND goal_difference = 14 AND draws > 6 ### context: CREATE TABLE table_name_13 (points VARCHAR, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR) |
### question: Which Played has Goals against larger than 34, and Wins smaller than 12, and Goals for smaller than 50, and Losses larger than 15? ### answer: SELECT AVG(played) FROM table_name_39 WHERE goals_against > 34 AND wins < 12 AND goals_for < 50 AND losses > 15 ### context: CREATE TABLE table_name_39 (played INT... |
### question: Which Draws has Goals against smaller than 47, and a Position smaller than 13, and Goals for of 52? ### answer: SELECT MIN(draws) FROM table_name_28 WHERE goals_against < 47 AND position < 13 AND goals_for = 52 ### context: CREATE TABLE table_name_28 (draws INTEGER, goals_for VARCHAR, goals_against VARCHA... |
### question: How long is the bridge in Villeneuve-sur-Lot? ### answer: SELECT longest_span_in_s_metre___feet__ FROM table_name_40 WHERE location = "villeneuve-sur-lot" ### context: CREATE TABLE table_name_40 (longest_span_in_s_metre___feet__ VARCHAR, location VARCHAR) |
### question: Which bridge was completed in 1928? ### answer: SELECT name FROM table_name_57 WHERE completed = "1928" ### context: CREATE TABLE table_name_57 (name VARCHAR, completed VARCHAR) |
### question: How long is the UK's Ballochmyle Viaduct? ### answer: SELECT longest_span_in_s_metre___feet__ FROM table_name_97 WHERE land = "uk" AND name = "ballochmyle viaduct" ### context: CREATE TABLE table_name_97 (longest_span_in_s_metre___feet__ VARCHAR, land VARCHAR, name VARCHAR) |
### question: What kind of arch is the pont de montanges (pont-des-pierres)? ### answer: SELECT arch_type FROM table_name_23 WHERE name = "pont de montanges (pont-des-pierres)" ### context: CREATE TABLE table_name_23 (arch_type VARCHAR, name VARCHAR) |
### question: From where did the Scout carrier rocket with the satellite that has a COSPAR ID of 1971-109a launch? ### answer: SELECT launch_site FROM table_name_6 WHERE carrier_rocket = "scout" AND cospar_id = "1971-109a" ### context: CREATE TABLE table_name_6 (launch_site VARCHAR, carrier_rocket VARCHAR, cospar_id VA... |
### question: When was the satellite that has a COSPAR ID of 1967-042a launched? ### answer: SELECT launch_date FROM table_name_80 WHERE cospar_id = "1967-042a" ### context: CREATE TABLE table_name_80 (launch_date VARCHAR, cospar_id VARCHAR) |
### question: What is Ariel 3's COSPAR ID? ### answer: SELECT cospar_id FROM table_name_3 WHERE satellite = "ariel 3" ### context: CREATE TABLE table_name_3 (cospar_id VARCHAR, satellite VARCHAR) |
### question: Which satellite was launched from Vandenberg? ### answer: SELECT satellite FROM table_name_5 WHERE launch_site = "vandenberg" ### context: CREATE TABLE table_name_5 (satellite VARCHAR, launch_site VARCHAR) |
### question: What is the COSPAR ID of Ariel 4, which was launched with a Scout carrier rocket? ### answer: SELECT cospar_id FROM table_name_69 WHERE carrier_rocket = "scout" AND satellite = "ariel 4" ### context: CREATE TABLE table_name_69 (cospar_id VARCHAR, carrier_rocket VARCHAR, satellite VARCHAR) |
### question: Which Rush song was played for Mike Fincke? ### answer: SELECT song FROM table_name_4 WHERE played_for = "mike fincke" AND artist = "rush" ### context: CREATE TABLE table_name_4 (song VARCHAR, played_for VARCHAR, artist VARCHAR) |
### question: On what flight day was U2 played? ### answer: SELECT flight_day FROM table_name_2 WHERE artist = "u2" ### context: CREATE TABLE table_name_2 (flight_day VARCHAR, artist VARCHAR) |
### question: What links were used on flight day 16? ### answer: SELECT links FROM table_name_81 WHERE flight_day = "day 16" ### context: CREATE TABLE table_name_81 (links VARCHAR, flight_day VARCHAR) |
### question: What is the 2011 Australian Open and a 2010 QF? ### answer: SELECT 2011 FROM table_name_70 WHERE tournament = "australian open" AND 2010 = "qf" ### context: CREATE TABLE table_name_70 (tournament VARCHAR) |
### question: What is 2010 that has 1r 2011? ### answer: SELECT 2010 FROM table_name_3 WHERE 2011 = "1r" ### context: CREATE TABLE table_name_3 (Id VARCHAR) |
### question: What is the winning % for the 2010 QF? ### answer: SELECT win__percentage FROM table_name_3 WHERE 2010 = "qf" ### context: CREATE TABLE table_name_3 (win__percentage VARCHAR) |
### question: What is the 2009 for 2012 1R in Wimbledon and a 2011 2r? ### answer: SELECT 2009 FROM table_name_77 WHERE 2012 = "1r" AND tournament = "wimbledon" AND 2011 = "2r" ### context: CREATE TABLE table_name_77 (tournament VARCHAR) |
### question: What is 2012 that has a winning % of 67%? ### answer: SELECT 2012 FROM table_name_60 WHERE win__percentage = "67%" ### context: CREATE TABLE table_name_60 (win__percentage VARCHAR) |
### question: In 1979 when Jimmy Connors was the runner-up what was the score? ### answer: SELECT score FROM table_name_74 WHERE runner_up = "jimmy connors" AND year < 1979 ### context: CREATE TABLE table_name_74 (score VARCHAR, runner_up VARCHAR, year VARCHAR) |
### question: Who won when Peter Fleming was a runner-up? ### answer: SELECT champion FROM table_name_82 WHERE runner_up = "peter fleming" ### context: CREATE TABLE table_name_82 (champion VARCHAR, runner_up VARCHAR) |
### question: When John Mcenroe won at Montreal, what was the score? ### answer: SELECT score FROM table_name_43 WHERE location = "montreal" AND champion = "john mcenroe" ### context: CREATE TABLE table_name_43 (score VARCHAR, location VARCHAR, champion VARCHAR) |
### question: When Ilie Năstase beat runner-up Peter Fleming what year was it? ### answer: SELECT COUNT(year) FROM table_name_56 WHERE champion = "ilie năstase" AND runner_up = "peter fleming" ### context: CREATE TABLE table_name_56 (year VARCHAR, champion VARCHAR, runner_up VARCHAR) |
### question: What is the first track where the production credit is margret arranged by e. mergency? ### answer: SELECT MIN(track) FROM table_name_98 WHERE production_credits = "margret arranged by e. mergency" ### context: CREATE TABLE table_name_98 (track INTEGER, production_credits VARCHAR) |
### question: Which song was written by Nigel Stock and is 4:12 long? ### answer: SELECT title FROM table_name_58 WHERE songwriter_s_ = "nigel stock" AND time = "4:12" ### context: CREATE TABLE table_name_58 (title VARCHAR, songwriter_s_ VARCHAR, time VARCHAR) |
### question: Who was the songwriter for Track 4, produced by nigel wright and john smits? ### answer: SELECT songwriter_s_ FROM table_name_84 WHERE production_credits = "nigel wright and john smits" AND track = 4 ### context: CREATE TABLE table_name_84 (songwriter_s_ VARCHAR, production_credits VARCHAR, track VARCHAR) |
### question: What is the lowest draft of player jim farrell, who has a pick greater than 197 and a round of 14? ### answer: SELECT MIN(draft) FROM table_name_62 WHERE pick > 197 AND round = 14 AND player = "jim farrell" ### context: CREATE TABLE table_name_62 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR... |
### question: What is the lowest pick of player paul stasiuk from a round greater than 12? ### answer: SELECT MIN(pick) FROM table_name_45 WHERE player = "paul stasiuk" AND round > 12 ### context: CREATE TABLE table_name_45 (pick INTEGER, player VARCHAR, round VARCHAR) |
### question: What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2? ### answer: SELECT COUNT(pick) FROM table_name_32 WHERE nationality = "canada" AND draft < 1976 AND player = "curt bennett" AND round < 2 ### context: CREATE TABLE table_name_32 (pick VARCHAR... |
### question: What is the average pick of player paul maclean, who had a draft before 1978? ### answer: SELECT AVG(pick) FROM table_name_19 WHERE player = "paul maclean" AND draft < 1978 ### context: CREATE TABLE table_name_19 (pick INTEGER, player VARCHAR, draft VARCHAR) |
### question: What is the average round of player dave pulkkinen, who had a draft after 1969? ### answer: SELECT AVG(round) FROM table_name_61 WHERE player = "dave pulkkinen" AND draft > 1969 ### context: CREATE TABLE table_name_61 (round INTEGER, player VARCHAR, draft VARCHAR) |
### question: What was the position in 1981? ### answer: SELECT position FROM table_name_55 WHERE year = 1981 ### context: CREATE TABLE table_name_55 (position VARCHAR, year VARCHAR) |
### question: What was the player with pick 19? ### answer: SELECT player FROM table_name_87 WHERE pick = "19" ### context: CREATE TABLE table_name_87 (player VARCHAR, pick VARCHAR) |
### question: What is the Country of the T2 Place Player with a Score of 69-69-69=207? ### answer: SELECT country FROM table_name_2 WHERE place = "t2" AND score = 69 - 69 - 69 = 207 ### context: CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, score VARCHAR) |
### question: What is T7 Place Player Justin Leonard's Score? ### answer: SELECT score FROM table_name_31 WHERE place = "t7" AND player = "justin leonard" ### context: CREATE TABLE table_name_31 (score VARCHAR, place VARCHAR, player VARCHAR) |
### question: What Player's Score is 69-71-69=208? ### answer: SELECT player FROM table_name_88 WHERE score = 69 - 71 - 69 = 208 ### context: CREATE TABLE table_name_88 (player VARCHAR, score VARCHAR) |
### question: What is the Place of the Player with a To par of –8 and a Score of 67-74-67=208? ### answer: SELECT place FROM table_name_83 WHERE to_par = "–8" AND score = 67 - 74 - 67 = 208 ### context: CREATE TABLE table_name_83 (place VARCHAR, to_par VARCHAR, score VARCHAR) |
### question: What is T4 Place Player Nick Price's Score? ### answer: SELECT score FROM table_name_15 WHERE place = "t4" AND player = "nick price" ### context: CREATE TABLE table_name_15 (score VARCHAR, place VARCHAR, player VARCHAR) |
### question: What is Justin Leonard with a To par of –7's Score? ### answer: SELECT score FROM table_name_32 WHERE to_par = "–7" AND player = "justin leonard" ### context: CREATE TABLE table_name_32 (score VARCHAR, to_par VARCHAR, player VARCHAR) |
### question: Who was the opponent at the week 4 game? ### answer: SELECT opponent FROM table_name_85 WHERE week = 4 ### context: CREATE TABLE table_name_85 (opponent VARCHAR, week VARCHAR) |
### question: What was the result of the week 16 game? ### answer: SELECT result FROM table_name_49 WHERE week = 16 ### context: CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.